File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -12,27 +12,26 @@ RUN apt-get -y install python3-h5py && \
1212 pip install networkx && \
1313 pip install pandas && \
1414 pip install tqdm && \
15+ pip install seaborn && \
1516 pip install --no-cache-dir notebook jupyterlab jupyterhub && \
1617 rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*- && \
1718 pip install -U setuptools
1819
20+ # remove the fenics-mixed-dim folder to avoid confusion
21+ RUN rm -r demo/
22+
1923# Get fenics_ii
2024RUN git clone https://github.com/MiroK/fenics_ii.git && \
2125 cd fenics_ii && \
2226 python3 -m pip install -e . && \
2327 cd ..
2428
25-
2629# cbc.block
2730RUN git clone https://bitbucket.org/fenics-apps/cbc.block && \
2831 cd cbc.block && \
2932 python3 -m pip install . && \
3033 cd ..
31-
32-
33-
34+
3435# fix decorator error by reinstalling scipy
3536RUN pip uninstall -y scipy && pip install scipy
3637
37-
38- RUN python3 -m pip install git+https://github.com/IngeborgGjerde/graphnics
You can’t perform that action at this time.
0 commit comments