Last active
February 10, 2025 00:05
-
-
Save Melonangie/93c1e3d3a5bac3f135f90e71a48bfb4e 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 bigd | |
# jupyter lab | |
# | |
# Stop env | |
# ---------------------------------------- | |
# conda deactivate | |
# conda env remove -n bigd | |
# | |
# Update env: | |
# ---------------------------------------- | |
# conda env update --file bigd.yml --prune | |
# conda activate bigd | |
# pip list | |
# jupyter lab | |
# | |
# * [TensorRt](https://docs.nvidia.com/deeplearning/tensorrt/install-guide/index.html#installing-pip) | |
# * [TensorFlow](https://www.tensorflow.org/install/pip) | |
# * [pyTorch](https://pytorch.org/get-started/locally/#linux-pip) | |
#========================================== | |
name: bigd | |
channels: | |
- nvidia | |
- pytorch | |
- conda-forge | |
- defaults | |
dependencies: | |
- numpy | |
- pandas | |
- matplotlib | |
- scikit-learn | |
- seaborn | |
- keras | |
- kaggle | |
- jupyter | |
- tensorflow[and-cuda] | |
- pytorch | |
- torchvision | |
- pytorch-cuda | |
- pip | |
- pip: | |
- tensorrt | |
- nvidia-ml-py3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment