Recent | Popular
#python #commandline #conda #virtual #environment
conda activate base
#shell #bash #conda
# Use the --prefix or -p option to specify where to write the environment files. For example: conda create --prefix /tmp/test-env python=2.7
#shell #bash #pip #conda
pip freeze > requirements.txt # OR conda list -e > requirements.txt
#python #conda #jupyter
(firstEnv) >>conda install -c anaconda ipykernel >>python -m ipykernel install --user --name=firstEnv
#bash #ubuntu #conda
conda create --name new_name --clone old_name conda remove --name old_name --all
conda env export | grep -v "^prefix: " > SRIT_environment.yml
Tue Aug 22 2023 18:37:17 GMT+0000 (Coordinated Universal Time)
Tue Dec 13 2022 06:30:42 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/37926940/how-to-specify-new-environment-location-for-conda-create
Tue Dec 13 2022 06:21:47 GMT+0000 (Coordinated Universal Time) https://iqcode.com/code/python/create-requirementstxt-conda
Tue Apr 06 2021 19:57:21 GMT+0000 (Coordinated Universal Time)
Thu Dec 03 2020 11:11:19 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/42231764/how-can-i-rename-a-conda-environment
Tue Dec 01 2020 18:45:58 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/41274007/anaconda-export-environment-file