Skip to content

Instantly share code, notes, and snippets.

@Melonangie
Last active February 10, 2025 00:05
Show Gist options
  • Save Melonangie/93c1e3d3a5bac3f135f90e71a48bfb4e to your computer and use it in GitHub Desktop.
Save Melonangie/93c1e3d3a5bac3f135f90e71a48bfb4e to your computer and use it in GitHub Desktop.
Conda Data Science Enviroment
#==========================================
#
# 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