Last active
February 13, 2025 16:44
-
-
Save Melonangie/d88151b8739bcee4bc06240cfc34df9f to your computer and use it in GitHub Desktop.
Conda Data Science Enviroment
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
#========================================== | |
# | |
# Start env | |
# ---------------------------------------- | |
# conda activate smalld | |
# jupyter lab | |
# | |
# Stop env | |
# ---------------------------------------- | |
# conda deactivate | |
# conda env remove -n smalld | |
# | |
# Update env: | |
# ---------------------------------------- | |
# conda env update --file smalld.yml --prune | |
# conda activate smalld | |
# pip list | |
# jupyter lab | |
# | |
#========================================== | |
name: smalld | |
channels: | |
- nvidia | |
- conda-forge | |
- defaults | |
dependencies: | |
- numpy | |
- pandas | |
- matplotlib | |
- scikit-learn | |
- seaborn | |
- keras | |
- kaggle | |
- jupyter | |
- pip | |
- pip: | |
- nvidia-ml-py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment