We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 78d951b + 24ecfb7 commit 251c341Copy full SHA for 251c341
README.md
@@ -4,7 +4,12 @@
4
5
To set up an enviroment for this tutorial use
6
7
- $ conda create -n mpl-tutorial -c conda-forge -c conda-forge/label/rc 'matplotlib>1.6' pandas pytables ipython python=3
+ $ conda env create -f environment.yml
8
+
9
+or
10
11
+ $ conda create -n mpl_tutorial -c anaconda matplotlib pandas pytables h5py ipython scipy python=3.6
12
13
14
for *nix
15
environment.yml
@@ -0,0 +1,12 @@
1
+name: mpl-tutorial
2
+channels:
3
+- anaconda
+- defaults
+dependencies:
+- h5py
+- ipython
+- matplotlib
+- pandas
+- pytables
+- scipy
+- python=3.6
0 commit comments