forked from croach/oreilly-matplotlib-course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.yml
26 lines (22 loc) · 831 Bytes
/
environment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: mpl
dependencies:
# This course depends on a few of the new features and changes made to
# matplotlib for the 1.5 release, so make sure to use 1.5 or greater.
- matplotlib == 1.5.1
# We need version 4.1 or greater of IPython since it has my fix for displaying
# emtpy figures in a jupyter notebook.
- ipython == 4.1.1
# Any version of these should work just fine, but I've marked the versions I
# used in the course just to be sure everything works.
- jupyter == 1.0.0
- numpy == 1.10.4
- basemap == 1.0.7
- xlrd == 0.9.4
- seaborn == 0.7.0
- bokeh == 0.11.1
- mpld3 == 0.2
# The plotly library isn't installable via conda as of this recording, so
# install it through pip. Again, any version should be fine, but 1.9.5 was the
# version I used in the course.
- pip:
- plotly == 1.9.5