-
Notifications
You must be signed in to change notification settings - Fork 9
Set up Virtualenv
Andrew Boring edited this page Mar 26, 2019
·
2 revisions
If you already have Python 3 included with your operating system, you can use these instructions to install/configure an environment. The example below uses command prompt/terminal commands the name "aci" for the environment.
- mkdir aci
- virtualenv aci
- source activate aci
If you're using Anaconda, there's a nice outline on this page. The example below uses the name "aci" for the environment.
- conda create -n aci python=3.7 anaconda
- source activate aci
To deactivate an environment, just type source deactivate aci