ImportError: No module named pandas. Pandas installed pip ImportError: No module named pandas. Pandas installed pip pandas pandas

ImportError: No module named pandas. Pandas installed pip


First of all, install virtualenv inside your project folder to secure your project directory to avoid conflict with your other packages.

pip install virtualenv

After installing this run this command one by one inside your root project directory:

virtualenv venvsource venv/bin/activate

Now Your directory is secure and you can install your required packages inside.

pip install pandas

and others as you required.

Because you have installed virtualenv and running as secure it will not conflict with other outside packages.

Use this all steps one by one. I hope it will work for you to avoid such error.

Thanks.


Try to install pandas using pip and pip3.

pip install pandaspip3 install pandas

A suggestion, use pyenv and set a python version for your local directory.


If python v2.7 is already installed, then to install numpy and pandas for v2.7. Run the below commands :

for Ubuntu / Linux -

sudo apt-get install python-numpysudo apt-get install python-pandas

If python v3 is already installed, then to install numpy and pandas for v3. Run the below commands :

for Ubuntu / Linux -

sudo apt-get install python3-numpysudo apt-get install python3-pandas