I have hit a bit of a brick wall regarding the set up of django 1.7 using a virtualenv configured to Python 3.4.
I have created a Python 3.4 virtualenv using:
sudo virtualenv --no-site-packages -p /usr/bin/python3.4 venv
I have then activated the env using:
source venv/bin/activate
Once in the activated virtualenv i have tried:
sudo pip install https://www.djangoproject.com/download/1.7b1/tarball/
This installs django in the Python 2.7 directory and not in the virtual environment..
Checking with pip freeze shows no installed packages
I have tried downloading the zip for django 1.7 and using python setup.py install within the environment but still get the install occurring outside of the env and in the 2.7 directory..
Any advice or pointers on what i'm doing wrong would be really appreciated!!
--no-site-packagesis now a default option, so you don't need to specify it in your command; 2) Django 1.7b2 has been released with a few security fixes, so you can change your URL to djangoproject.com/download/1.7b2/tarball - Rodney Folz