Last active
August 11, 2023 14:05
-
-
Save deepwilson/34e28c51f9313c1227f26f85e5b8095c to your computer and use it in GitHub Desktop.
This file contains 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 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