Skip to content

Instantly share code, notes, and snippets.

@stevedoyle
Last active November 26, 2021 11:11
Show Gist options
  • Save stevedoyle/a390af660d4aa1995caa63a60ccc3820 to your computer and use it in GitHub Desktop.
Save stevedoyle/a390af660d4aa1995caa63a60ccc3820 to your computer and use it in GitHub Desktop.
Using Conda

Using Conda

Creating a new environment. In this example, the environment is setup to use python 3.10

    $ conda create --name py10 python=3.10

Activating an environment

    $ conda activate py10

Deactivating an active environment

    $ conda deactivate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment