Python3.4+uWSGI for Django Website in VirtualEnv (CentOS)
Install Python 3.x
In CentOS, There is no Python3 rpm package in EPEL, RPMFusion, we must install Python 3.x by source. Download Python 3.4.0, and extract it.
1 |
|
switch to Python-3.4.0, compile&install Python 3.4.0 (You are expected have installed gcc, make and sqlite-devel)
1 |
|
As the result, you can see the path of Python 3.4.0 by command which python3.4
Thanks to Python 3.4.0, we needn’t install PIP.
Install virtualenvwrapper&Django
You can install virtualenvwrapper by PIP.(Require root privileges) pip install virtualenvwrapper Don’t forget add two lines to file .bashrc:
1 |
|
Let it take effect:
source ~/.bashrc
Then, create a New VirtualEnv, and install Django:
1 |
|
Let’s create a new Website for test (in virtualenv django_test):
1 |
|
Visit port 8000, you can see the welcome page.
Install uWSGI
Download it and extract it:
1 |
|
Compile it ( before compile, make sure you are in virtualenv django_test with Python 3.4.0 ):
python uwsgiconfig.py --build
Test it (with Django Website proj):
1 |
|
Then visit the port 8000, the uWSGI is also worked!
Let’s prepare uWSGI for nginx!
move uwsgi to system path (I cannot find a better way to install uWSGI):
1 |
|
and create the Directory /usr/etc/uwsgi
and the file /usr/etc/uwsgi/django.ini
:
1 |
|
execute uWSGI:
/usr/local/uwsgi-2.0.3/uwsgi /usr/local/etc/uwsgi/django.ini
Install Nginx
You can install nginx by yum (Require EPEL):
yum install nginx -y
Then, edit /etc/nginx/conf.d/virtual.conf
:
1 |
|
And start nginx:
service nginx start
Then, visit the port 80, you can see the welcome page of Django.