forked from nimafazeli/CompEcon2020
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Philipp Mueller
committed
May 12, 2020
1 parent
d976a90
commit 26df3ed
Showing
1 changed file
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,14 +12,15 @@ RUN apt-get -y install --no-install-recommends nodejs\ | |
|
||
|
||
COPY . ${HOME}/ | ||
RUN pip install numpy \ | ||
&& pip install casadi\ | ||
&& pip install scipy\ | ||
&& pip install matplotlib\ | ||
&& pip install plotly==4.7.1\ | ||
&& pip install "notebook>=5.3" "ipywidgets==7.5"\ | ||
&& pip install jupyterlab "ipywidgets=7.5"\ | ||
&& pip install pandas\ | ||
RUN pip3 install numpy \ | ||
&& pip3 install casadi\ | ||
&& pip3 install scipy\ | ||
&& pip3 install tensorflow\ | ||
&& pip3 install matplotlib\ | ||
&& pip3 install plotly==4.7.1\ | ||
&& pip3 install "notebook>=5.3" "ipywidgets==7.5"\ | ||
&& pip3 install jupyterlab "ipywidgets=7.5"\ | ||
&& pip3 install pandas\ | ||
&& chown -R ${NB_UID} ${HOME} | ||
|
||
RUN jupyter labextension install [email protected] | ||
|