Setting up the Django development environment on MAC OS

Source: Internet
Author: User
Tags install homebrew postgresql install django pip install django virtualenv

Install Homebrew First
-e"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Installing the PostgreSQL installation PostgreSQL package
$ brew install postgresql
Start/Stop Service
-D /usr/local/var-D /usr/local/var/postgres
Create the current user default database
$ createdb <dbname> -O <username>比如$ createdb kongxx -O kongxx
Accessing the database
$ psql
Create a database that Django needs to use
CREATE USER admin WITH PASSWORD ‘Letmein‘;CREATE DATABASE test OWNER admin ENCODING ‘UTF8‘;
Install Python and Django installation python
$ brew install python
Installing Virtualenv
$ easy_install pip$ pip install virtualenv$ virtualenv myenv$ cd myenv$ . bin/activate
Installing Django
$ pip install django$ pip install psycopg2$ pip install djangorestframework
Test
# django-admin.py startproject myapp

Modify database configuration, edit myapp/myapp/settings.py

DATABASES = {    ‘default‘: {        ‘ENGINE‘‘django.db.backends.postgresql_psycopg2‘,        ‘NAME‘‘test‘,        ‘USER‘‘admin‘,        ‘PASSWORD‘‘Letmein‘,        ‘HOST‘‘127.0.0.1‘,        ‘PORT‘‘5432‘,    }}
# cd myapp# python manage.py runserver 0.0.0.0:8000

Then visit http://localhost:8000 to see that Django is ready to work.

Please indicate this address in the form of a link.
This address: http://blog.csdn.net/kongxx/article/details/49365973

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

Setting up the Django development environment on MAC OS

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.