You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@BGameiro2000
I used this docker image as part of the UnRAID template (bgameiro/arch-jupyterlab)
The problem is that it is unusable. It doesn't even have pip installed.
It doesn't have matplotlib. So it won't even run the simplest of demo notebooks.
I had to run this in the container before it would work with sample notebooks.
pacman -Syu # I think this is optional but it updated a bunch of components
pacman -S python-pip
pip install matplotlib
pip install scipy
The text was updated successfully, but these errors were encountered:
I also noticed that when updating to the latest jupyter server, the argument --app-dir=/appdata/lab is not recognized so the docker run command fails. I think you have to use -e environment variable JUPYTERLAB_DIR instead.
I'll add python-pip to the image, but, for know, the docker is just meant to provide the jupyter lab base as it can be used with different languages and it doesn't make sense to add them all to the default. You'll have to use pip to install matplotlib and scipy in your image.
Regarding pacman -Syu, this updates all packages, it had a lot to update because I didn't update the image in a while. I'm updating it today.
@BGameiro2000
I used this docker image as part of the UnRAID template (
bgameiro/arch-jupyterlab
)The problem is that it is unusable. It doesn't even have
pip
installed.It doesn't have
matplotlib
. So it won't even run the simplest of demo notebooks.I had to run this in the container before it would work with sample notebooks.
pacman -Syu # I think this is optional but it updated a bunch of components pacman -S python-pip pip install matplotlib pip install scipy
The text was updated successfully, but these errors were encountered: