@@ -25,6 +25,10 @@ RUN apt-get update && \
25
25
zsh \
26
26
vim \
27
27
htop \
28
+ # build-essential \
29
+ # libcurl4-openssl-dev \
30
+ # libssl-dev \
31
+ # libxml2-dev \
28
32
gfortran && \
29
33
ldconfig && \
30
34
apt-get autoclean && \
@@ -49,10 +53,10 @@ RUN mamba create --yes -n sage sage python=3.11 && \
49
53
"jupyter_bokeh"
50
54
51
55
RUN R -e 'require(devtools); \
52
- install_version(" ggiraphExtra", repos = "http://cran.us.r-project.org", quiet = TRUE ); \
53
- install_version(" lisp", version = "0.1", repos = "http://cran.us.r-project.org ", quiet = TRUE); \
54
- install_version(" translate", version = "0 .1.2", repos = "http://cran.us.r-project.org ", quiet = TRUE)'
55
-
56
+ devtools::install_github("cardiomoon/ ggiraphExtra"); \
57
+ install.packages("https://cran.r-project.org/src/contrib/Archive/ lisp/lisp_0.1.tar.gz ", repos = NULL, type = "source ", quiet = TRUE); \
58
+ install.packages("https://cran.r-project.org/src/contrib/Archive/ translate/translate_0 .1.2.tar.gz ", repos = NULL, type = "source ", quiet = TRUE)'
59
+
56
60
# Install R packages
57
61
RUN mamba install --yes -c conda-forge \
58
62
'r-stargazer' \
@@ -69,9 +73,10 @@ RUN mamba install --yes -c conda-forge \
69
73
'r-modelsummary' \
70
74
'r-nsyllable' \
71
75
'r-proxyc' \
72
- 'r-tidytext' && \
76
+ 'r-tidytext' \
77
+ 'r-car' && \
73
78
mamba clean --all -f -y
74
- RUN mamba install --yes -c conda-forge r-car
79
+ # RUN mamba install --yes -c conda-forge r-car
75
80
76
81
77
82
RUN pip install --upgrade setuptools
@@ -82,8 +87,8 @@ RUN pip install nbgitpuller \
82
87
black \
83
88
pandas_ta \
84
89
ccxt \
85
- isort \
86
- jupyterlab-github \
90
+ # isort \
91
+ # jupyterlab-github \
87
92
jupyterlab-spreadsheet-editor \
88
93
jupyterlab_templates \
89
94
otter-grader \
@@ -92,14 +97,13 @@ RUN pip install nbgitpuller \
92
97
"vegafusion-jupyter[embed]"
93
98
RUN pip install jupytext --upgrade
94
99
95
-
96
100
RUN npm cache clean --force && \
97
101
fix-permissions $CONDA_DIR && \
98
102
fix-permissions /home/jovyan
99
103
RUN export NODE_OPTIONS=--max-old-space-size=4096
100
- RUN jupyter server extension enable --py jupyterlab_templates && \
101
- jupyter server extension enable nbgitpuller --sys-prefix && \
102
- jupyter lab build --dev-build=False --minimize=False
104
+ # RUN jupyter server extension enable --py jupyterlab_templates && \
105
+ # jupyter server extension enable nbgitpuller --sys-prefix && \
106
+ # jupyter lab build --dev-build=False --minimize=False
103
107
104
108
USER root
105
109
0 commit comments