Can I have 2 Django sites using 2 different version of Python on 1 domain?

136 Views Asked by At

I have 1 Django project using the server's default Python (2.6.6) and I have a new project that I want to use Python 2.7, and have it in a virtual env.

This is the error:

[client 64.136.119.142] Traceback (most recent call last):
[Wed Jun 17 00:00:32 2015] [error] [client 64.136.119.142]   File "/var/www/venv/googleclicks/googleclicks/wsgi.py", line 12, in <module>
[Wed Jun 17 00:00:32 2015] [error] [client 64.136.119.142]     from django.core.wsgi import get_wsgi_application
[Wed Jun 17 00:00:32 2015] [error] [client 64.136.119.142]   File "/var/www/venv/lib/python2.7/site-packages/django/__init__.py", line 1, in <module>
[Wed Jun 17 00:00:32 2015] [error] [client 64.136.119.142]     from django.utils.version import get_version
[Wed Jun 17 00:00:32 2015] [error] [client 64.136.119.142]   File "/var/www/venv/lib/python2.7/site-packages/django/utils/version.py", line 7, in <module>
[Wed Jun 17 00:00:32 2015] [error] [client 64.136.119.142]     from django.utils.lru_cache import lru_cache
[Wed Jun 17 00:00:32 2015] [error] [client 64.136.119.142]   File "/var/www/venv/lib/python2.7/site-packages/django/utils/lru_cache.py", line 28
[Wed Jun 17 00:00:32 2015] [error] [client 64.136.119.142]      fasttypes = {int, str, frozenset, type(None)},
[Wed Jun 17 00:00:32 2015] [error] [client 64.136.119.142]                      ^
[Wed Jun 17 00:00:32 2015] [error] [client 64.136.119.142]  SyntaxError: invalid syntax

httpd.conf:

<VirtualHost *:80>
    ServerName www.mydomain.com
    ErrorLog /var/mail/django-error-log
    Alias /static/ /var/www/django/t/tUrls/static/
    WSGIScriptAlias /t /var/www/django/t/t/wsgi.py

    WSGIScriptAlias /gclicks /var/www/venv/gc/gc/wsgi.py process-group=gclicks
    WSGIDaemonProcess gclicks python-path=/var/www/venv/gc:/var/www/venv/lib/python2.7/site-packages
    #WSGIPythonPath /var/www/django/t:/var/www/venv/gc:/var/www/venv/lib/python2.7/site-packages
    <Location /gclicks>
        WSGIProcessGroup gclicks
    </Location>

#   WSGIDaemonProcess gclicks python-path=/var/www/django/t:/var/www/venv/gc:/var/www/venv/lib/python2.7/site-packages
#   WSGIProcessGroup gclicks

    <Directory /var/www/django>
    Order allow,deny
    Allow from all
    </Directory>
</VirtualHost>

WSGIPythonPath /var/www/django/t:/var/www/venv/gc:/var/www/venv/lib/python2.7/site-packages
#WSGIPythonHome /var/www/virtualenv-2.7

WSGISocketPrefix /var/run/wsgi
2

There are 2 best solutions below

4
On BEST ANSWER

While you can host multiple domains / sites under a single version of Python with mod_wsgi, as far as I know you can not have multiple versions of Python running since mod_wsgi has to be compiled against a single version.

For Centos 6, first follow the instructions here to buy Python 2.7.x or 3.x to an alternative location (make altinstall):

https://www.digitalocean.com/community/tutorials/how-to-set-up-python-2-7-6-and-3-3-3-on-centos-6-4

Then, you should be able to fire up Python and check your version:

python2.7 --version

Next, create a virtualenv (I use virtualenvwrapper; highly recommended):

mkvirtualenv yourproject -p python2.7

Then, install mod_wsgi for the new Python version (4.2.8 is the latest I've tested in my vagrant box; you may want to try a more recent version):

wget -q "https://github.com/GrahamDumpleton/mod_wsgi/archive/4.2.8.tar.gz"
tar -xzf '4.2.8.tar.gz'
cd ./mod_wsgi-4.2.8
./configure --with-python=python2.7
make
make install

Finally, if everything worked, ensure you point to the correct virtualenv in this line:

WSGIScriptAlias /gclicks /var/www/venv/gc/gc/wsgi.py process-group=gclicks
0
On

Try this, I am not sure about different python version but you can have multiple sites under one domain.