5

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

Eli
  • 123
  • 1
  • 12

1 Answers1

3

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.

akaihola
  • 26,309
  • 7
  • 59
  • 69