I currently have continuum analytics' Python distribution (called Anaconda) downloaded and in use on my computer. My problem is that I want to use virtualenv
for a flask project and Anaconda flashes a warning that says "virtual env is not supported".
Is there any way I can run two distributions, stock Python and Anaconda on the same computer?
Sure, if you want to use the Anaconda distribution separately, you can set up an alias to run that version and leave the stock python as the default.
In your
.bash_profile
file, the Anaconda installer probably put the following line:Comment this out, and add an alias; e.g.
You can then run your Anaconda python distribution by running
pyconda
in a new terminal.update
It'd actually probably be better to put everything in the anaconda install into your path when you'd like to use it instead of just python (this is why your ipython broke initially).
To do this, set up an alias such as the following:
Then your anaconda install will be the default for everything in that terminal session.
For instance, after opening up a new terminal, try the following:
To use your other distribution again, just load up a new terminal, thus getting anaconda out of your path.