Skip to content

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.

  1. mkdir aci
  2. virtualenv aci
  3. 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.

  1. conda create -n aci python=3.7 anaconda
  2. source activate aci

To deactivate an environment, just type source deactivate aci