Skip to content

Instantly share code, notes, and snippets.

@deepwilson
Last active August 11, 2023 14:05
Show Gist options
  • Save deepwilson/34e28c51f9313c1227f26f85e5b8095c to your computer and use it in GitHub Desktop.
Save deepwilson/34e28c51f9313c1227f26f85e5b8095c to your computer and use it in GitHub Desktop.
# create env
conda create -n env_name
conda activate env_name
# remove env
conda env remove -n env_name
# list all versions from diff channels
conda search package_name
# install specific package
conda install tensorflow=2.7.1
# create env from yaml file
conda env create --file "dl_env.yaml"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment