Reputation: 123
I need to install Jupyter on server, that does not have access to internet. I installed Ipython but to install Jupyter, I think it needs to have internet connection. Any solution for the problem?
Thanks
Upvotes: 5
Views: 3580
Reputation: 26845
Use pip download jupyter
on your local machine to download all the required packages. Place them in a directory on your server. Use pip install --no-index --find-links <directory> jupyter
on the server.
See pip download documentation for more information.
Upvotes: 4