Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
169 views
in Technique[技术] by (71.8m points)

python - Import pandas is not working in Jupyter Notebook

Snapshot of Error

I tried

  1. pip install pandas on terminal
  2. !pip install pandas on Jupyter Notebook
  3. Creating new environment in anaconda then installing pandas again
  4. conda install pandas nothing seems to work here
question from:https://stackoverflow.com/questions/65870276/import-pandas-is-not-working-in-jupyter-notebook

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try:

pip install --upgrade pip
pip install jupyter

then in jupyter notebook:

!pip install pandas

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...