Python virtualenv with Anaconda and python.org python 3.5
NickName:Asish M. Ask DateTime:2016-08-29T21:03:12

Python virtualenv with Anaconda and python.org python 3.5

I have both anaconda Python 3.5 and Python 3.5 from python.org (on windows)

python -V
Python 3.5.1 :: Anaconda 4.0.0 (64-bit)

python3 -V
Python 3.5.1

py -V
Python 2.7.12

I want to create a virtualenv with only python 3.5.1 and not the anaconda version.

When I run

python3 c:\Python35\Tools\scripts\pyvenv.py venv

python -V still shows Python 3.5.1 :: Anaconda 4.0.0 (64-bit) after activating the environment

Is there anyway to get it to use the native 3.5 version?

Copyright Notice:Content Author:「Asish M.」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/39207038/python-virtualenv-with-anaconda-and-python-org-python-3-5

More about “Python virtualenv with Anaconda and python.org python 3.5” related questions

Python virtualenv with Anaconda and python.org python 3.5

I have both anaconda Python 3.5 and Python 3.5 from python.org (on windows) python -V Python 3.5.1 :: Anaconda 4.0.0 (64-bit) python3 -V Python 3.5.1 py -V Python 2.7.12 I want to create a virt...

Show Detail

How to get Python 3.5 and Anaconda 3.5 running on ubuntu 16.04?

Anaconda for python 3.5 and python 2.7 seems to install just as a drop in folder inside my home folder on Ubuntu. Is there an installed version of Anaconda for Ubuntu 16? I'm not sure how to ask ...

Show Detail

cannot load Python 3.5 interpreter for virtualenv

I have installed Python 3.5 through Anaconda on the OSX system. After installing and activating the virtual environment, virtualenv venv source venv/bin/activate The Python version is Python 2.7...

Show Detail

How to install virtualenv for python3?

I am creating a Django App and stuck at virtualenv installation. I have seen this and tried to follow but it resulted in this everytime I tried something. Why can't it take python 3 for installing ...

Show Detail

`virtualenv` with Python 3.5 on Ubuntu 15.04

I've never used virtualenv, I'm working on Ubuntu 15.04 (remotely via ssh), and I've been told I can't make any changes to system the Pythons. Ubuntu 15.04 comes with Pythons 2.7 and 3.4.3, but I w...

Show Detail

Python virtualenv: Unable to install Python 3.5

I have created a virtualenv using pip but unable to install python 3.5 in the virtual environment. When I try this: virtualenv venv1 --python=python3.5 I am getting this error: The path python3.5 (

Show Detail

Virtualenv python path pointing to anaconda

I have an issue with an old virtualenv project after I installed Anaconda: Cloned my project from GitHub. source bin/activate which python The output is /Users/myuser/anaconda/bin/python, I expec...

Show Detail

Creating Virtualenv using Anaconda Python Errors

I'd been working on Python distribution from Anaconda, as default. To use virtual environments, installed virtualenv. It shows that it was installed in the default location as in Anaconda. But, while

Show Detail

Anaconda version with Python 3.5

I want to install tensorflow with python 3.5 using anaconda but I don't know which anaconda version has python 3.5. When I go to anaconda download page am presented with Anaconda 4.3.1 which has ei...

Show Detail

Python virtualenv switch to 3.5 from 2.7

How can I switch from virtualenv that uses python 2.7 to python virtualenv that uses python 3.5?

Show Detail