Skip to content

Instantly share code, notes, and snippets.

@megpay
Created July 9, 2022 12:23
Show Gist options
  • Save megpay/b97ade8045dff2ffaabfbd354b88eff0 to your computer and use it in GitHub Desktop.
Save megpay/b97ade8045dff2ffaabfbd354b88eff0 to your computer and use it in GitHub Desktop.
Example conda yaml file to create a conda environment
name: data-visualization
dependencies:
- python=3.9.7
- pandas
- numpy
- matplotlib
- seaborn
- pip
- pip:
@megpay
Copy link
Author

megpay commented Jul 9, 2022

To create a conda environment labelled data-visualization, run the following from a Linux terminal:

conda env create -f conda.yaml

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment