forked from SimFin/simfin-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
requirements.txt
32 lines (25 loc) · 926 Bytes
/
requirements.txt
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
27
28
29
30
31
32
################################################################
# Python packages required for the SimFin tutorials.
# Install by running: pip install -r requirements.txt
################################################################
# Requirements for MOST of the tutorials:
simfin
pandas
numpy
seaborn
matplotlib
jupyter
################################################################
# Requirements for SOME of the tutorials:
scipy
statsmodels
sklearn
# Use TensorFlow v. 2.0 CPU because v. 2.1 is a 420 MB download!
# Use v. 2.0.1 because of a security risk/warning in v. 2.0.0
# https://github.com/tensorflow/tensorflow/releases/tag/v2.0.1
tensorflow==2.0.1
################################################################
# Install the nbval package if you want to automatically
# run and test all Notebooks. See README.md for details.
# nbval
################################################################