简体   繁体   中英

Do I need internet to use jupyter notebooks?

I am a beginner in the jupyter world. There are many occasions where I do not have access to internet, in such cases sometimes I get errors in jupyter... For example I was trying an import:

import matplotlib.pyplot as plt
import numpy as np
import pandas as pd

And I got this error:

在此处输入图片说明

Then, I connected to internet and the error did not appear.

I have my jupyter locally and it works without internet most of the time, but every now and then I get errors like that.

Problem is that internet is scarse and maybe I have to wait days until I can connect to the internet. Do I need internet to use jupyter notebooks or what am I missing?

The jupyter notebook runs on a local server on your computer, so there is no need of internet connection.

The error you're reporting seems not related to a connectivity issue, but possibly related to numpy .

You can install local anaconda framework. Use this for your local development, in a way you will not need internet connection for development.

for Windows: https://docs.anaconda.com/anaconda/install/windows/


for Mac: https://docs.anaconda.com/anaconda/install/mac-os/


for Linux: https://problemsolvingwithpython.com/01-Orientation/01.05-Installing-Anaconda-on-Linux/


The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM