Compare commits

..

No commits in common. "d41a25b366d63ddd956ac5dcb55cd21044cd802b" and "cb5ba1e0c1259c6e5d619570ab0a94313a9205a0" have entirely different histories.

View File

@ -54,7 +54,7 @@ case "$1" in
enable_venv "$2" enable_venv "$2"
mkdir -pv "$R_LIBS_SITE" mkdir -pv "$R_LIBS_SITE"
if command -v Rscript >> /dev/null; then if command -v Rscript >> /dev/null; then
Rscript -e "install.packages('IRkernel','$R_LIBS_SITE','http://cran.r-project.org');library(IRkernel);IRkernel::installspec()" Rscript -e 'install.packages("IRkernel",repos="http://cran.r-project.org");library(IRkernel);IRkernel::installspec()'
else else
echo "R isn't installed" echo "R isn't installed"
exit 1 exit 1
@ -79,7 +79,7 @@ case "$1" in
l|-l|launch|--launch) l|-l|launch|--launch)
enable_venv "$2" enable_venv "$2"
if command -v jupyter >> /dev/null; then if command -v jupyter >> /dev/null; then
exec jupyter lab --ip 0.0.0.0 exec jupyter lab --ip 0.0.0.0 --ServerApp.iopub_data_rate_limit 1e16
else else
echo "Jupyter lab isn't installed" echo "Jupyter lab isn't installed"
exit 1 exit 1