@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
@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
pipinstalled.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