Created
May 11, 2022 20:35
-
-
Save Merwanski/ec9a9017918fa3bcf5b1084faa17744b to your computer and use it in GitHub Desktop.
conda python env creation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create The Sandbox You Play In | |
conda create --name your_env_name python=3.7 -y | |
conda create --name your_env_name python=3.7 scipy=0.15.0 astroid babel | |
conda env export > my_environment.yml | |
conda info --envs | |
conda activate your_env_name | |
# To stop using the environment, type in | |
conda deactivate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment