Eli
Eli

Reputation: 123

installing Jupyter on server without internet access

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

Answers (1)

akaihola
akaihola

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

Related Questions