Reputation: 3
I keep getting an error in Git Bash as I run my python code:
$ python Humiditypyth.py
Traceback (most recent call last):
File "Humiditypyth.py", line 1, in <module>
import pandas as pd
ImportError: No module named pandas
I have Anaconda installed and I checked in "python list" that pandas is installed. Can you please help?
Upvotes: 0
Views: 2520
Reputation: 185
Try
Upvotes: 3
Reputation: 1345
Let's do a checklist
Do you have anaconda installed in the same python version that you are using? e.g. if python is calling python2.7 and python3 does python 3.6 you have to install anaconda in the right folder with either "sudo pip install anaconda" or "sudo pip3 install anaconda"
after that I think you still have to install pandas "pip install pandas" or "pip3 install pandas"
I might be wrong though I never used that library.
Upvotes: 0