DEV Community

GharamElhendy
GharamElhendy

Posted on

Documenting the NumPy and Pandas Installation

There were three .csv files for three cities: Chicago, Washington, and New York City, downloaded from the Udacity data science course.

To analyze some of the data, like the most common starting hour, I needed to use Pandas. But every time I tried to import Pandas and Numpy, I'd get an error "ModuleNotFoundError: No module named 'pandas'."

I tried to pip install them, but I got the following error: "ModuleNotFoundError: No module named 'pip'."

I tried "sudo apt-get install python3-pip" in the terminal, but it didn't work.

Finally, I tried "easy_install pip" and it worked!

Top comments (0)