Saturday, October 3, 2015

Re: Hi

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 <cristianacmc@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+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@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.

--
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+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@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/CA%2By5TLbM%2BQAb3ErSaN8piVsvLAUNDAJ3ba2OH%3DVGQUP5voT02Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment