-
Notifications
You must be signed in to change notification settings - Fork 0
/
covidEnv.yml
38 lines (33 loc) · 998 Bytes
/
covidEnv.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
27
28
29
30
31
32
33
34
35
36
37
38
name: covid
channels:
- conda-forge
- defaults
dependencies:
- seaborn
- jupyter
- jupyterlab
- matplotlib
- pandas
- pylint
- urllib3
- requests
- scikit-learn
- beautifulsoup4
- plotly
- nodejs # needed for plotly stuff I think
- psutil # needed to export plotly jpg in script
- ipykernel # needed for runnning ipynb in vscode
# build jupyter lab extensions for plotly
# # Avoid "JavaScript heap out of memory" errors during extension installation
# # (Windows)
# set NODE_OPTIONS=--max-old-space-size=4096
# # Jupyter widgets extension
# jupyter labextension install @jupyter-widgets/jupyterlab-manager --no-build
# # jupyterlab renderer support
# jupyter labextension install jupyterlab-plotly --no-build
# # FigureWidget support
# jupyter labextension install plotlywidget --no-build
# # Build extensions (must be done to activate extensions since --no-build is used above)
# jupyter lab build
# # (Windows)
# set NODE_OPTIONS=