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