On 06/01/2015 03:33 PM, greenbay.gra...@gmail.com wrote:
> According to this 
> https://docs.python.org/3.4/library/venv.html#module-venv 'Each 
> virtual environment has its own Python binary (allowing creation of 
> environments with various Python versions)'
>
> So how would I create a virtual environment using the venv module 
> that has a Python 2.7 binary?

You can't. The venv module only exists in and supports Python 3.3+.

If you need to support earlier Django versions, you'll need to use the
older "virtualenv" library instead, which looks very similar from the
end-user side. See https://virtualenv.pypa.io/en/latest/

Carl

Attachment: signature.asc
Description: OpenPGP digital signature

-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to