How To Quickly Switch Between The Different Python Executables On My Mac?
Can anyone tell me how I can quickly switch between the below Python executables on my Mac? I want to be able to stipulate in one particular virtual environment to use the Enthough
Solution 1:
You can create a virtualenv
by using:
virtualenv -p /Users/brendan/Library/Enthought/Canopy_64bit/User/bin/python canopy
and then do
source canopy/bin/activate
(if you are on Unix and use Bash).
Virtualenv can install with pip install virtualenv
, or follow instruction on the home page
Post a Comment for "How To Quickly Switch Between The Different Python Executables On My Mac?"