Hi

21 views
Skip to first unread message

Cristiana Costa

unread,
Oct 3, 2015, 9:16:29 PM10/3/15
to Django users
How can I install the Python 3.5 just in my virtualenv?

James Bennett

unread,
Oct 3, 2015, 9:34:49 PM10/3/15
to django...@googlegroups.com
To maintain different virtualenvs with different Python versions, I use pyenv:

https://github.com/yyuu/pyenv

On Sat, Oct 3, 2015 at 7:41 PM, Cristiana Costa <cristi...@gmail.com> wrote:
How can I install the Python 3.5 just in my virtualenv?

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/8edb77a8-a8c0-44a3-a801-f9d148c16a27%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Andrew Farrell

unread,
Oct 3, 2015, 9:42:15 PM10/3/15
to django...@googlegroups.com
If you already have python 3.5 installed globally, then you can do
```
$ which python3.5
/usr/bin/python3.5
$ virtualenv -p /usr/bin/python3.5 ~/trying35
```

to create a virtualenv with python3.5 in it.

If you use the conda package manager, you can do
```
conda create --name trying35 python=3.5
source activate trying35
```
to create an environment with python 3.5 installed and to activate it.

On Sat, Oct 3, 2015 at 7:41 PM, Cristiana Costa <cristi...@gmail.com> wrote:
How can I install the Python 3.5 just in my virtualenv?

--
Reply all
Reply to author
Forward
0 new messages