1

I am trying to import pandas on Python (Linux) but it is giving me the following error:

ModuleNotFoundError
Traceback (most recent call last) in () 1 import pandas as pd ModuleNotFoundError: No module named 'pandas'

Yash
  • 3,438
  • 2
  • 17
  • 33
ppxx
  • 177
  • 1
  • 11
  • 2
    did you install pandas? – ashish14 Sep 30 '19 at 12:29
  • 2
    Possible duplicate of [How to install pandas for Python 3?](https://stackoverflow.com/questions/38768996/how-to-install-pandas-for-python-3) – Prathik Kini Sep 30 '19 at 12:32
  • Possible duplicate of [ImportError: No module named pandas](https://stackoverflow.com/questions/33481974/importerror-no-module-named-pandas) – koen Sep 30 '19 at 13:45

3 Answers3

5

try below code to install pandas.

sudo pip3 install pandas

Above code work for me .

Aditya
  • 557
  • 3
  • 13
2

Try installing with this:

pip install pandas

If the install fails due to lacking privilege, do this:

sudo pip install pandas

Note: You may have to use pip3 is your default Python version is 2.X

Yash
  • 3,438
  • 2
  • 17
  • 33
1

You should never install Python packages using sudo as it's a potential security risk. Instead, you should install packages in a virtual environment.

Here's how to create and activate a virtual environment using Python's built-in venv module.

Creating the Environment

On Linux/Mac OS

$ python3 -m venv [name of environment]

On Windows

PS> python -m venv [name of environment]

Activating the Environment

On Linux/Mac OS

$ source [name of environment]/bin/activate

On Windows

PS> [name of environment]\Scripts\activate

Once you have your virtual environment active you can install pandas using pip install pandas and import it as usual in your program.

For more information on working with virtual environments read this: How Can You Work With a Python Virtual Environment?

Red
  • 55
  • 7
  • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference as the linked page may change. – rachwa Jul 30 '22 at 12:06
  • 1
    I've edited the answer to provide more information. – Red Jul 31 '22 at 13:16