python - Install jupyter notebook offline without pip - Stack Overflow
How to run Jupyter notebooks on a local server?
Installation of Jupyter Notebook
Setting up Jupyter Notebook and Learning Python
Videos
Extract zip file and run this command :
python setup.py install --single-version-externally-managed --root=/
Or you can use this command
pip install .
Pip has a download option. Not only for wheels, for everything that's pip installable.
Go into an empty folder on a computer that has the same operating system as your offline computer and the same version of python
Then download all required libraries (do not forget pip itself), like
pip download pip
pip download jupyter
pip download jupyterlab
pip download pandas
pip download requests
...
move the folder content to a directory on the offline computer
pip install pip -U --no-index --find-links .
pip install jupyter --no-index --find-links .
pip install jupyterlab -U --no-index --find-links .
...
If you get an error, because you forgot a library, download it, move it and continue.
And if you're on windows, you may need to download some libraries from this collection if those fail to install.
This will allow you to get a working jupyter installation with everything that's installable via pip.
We've been using DeepNote to teach python to our students, but now they suddenly require users to enter credit card information...
So we were thinking: Can't we just install something on a local server on our local network, so that our students may write Jupyter notebooks in their browser without downloading and installing stuff?
I've found something called JupyterHub, but it seems like it's mostly for the cloud...? We can install anything on a machine on our local network - isn't this a possibility?
» pip install notebook