Visual Studio Code windows , Python Pandas . No module named pandas Visual Studio Code windows , Python Pandas . No module named pandas pandas pandas

Visual Studio Code windows , Python Pandas . No module named pandas


I had a similar problem in VS Code. I was not able to find modules like Pandas, Selenium etc. Imports were underlined with a red colour.

Fixed the issue by changing the version of Python 3.7.3 64-bit to version 3.8.1 64-bit.

Procedure:

  1. Hit Ctrl + Shift + P
  2. Select Python: Select Interpreter
  3. Choose the latest installed version of Python (no more red underlines)


@Davdei It is good practice to work with a virtual environment, so you can test against different versions of Python.To get the list of available Python interpreter use (⇧⌘P) on Macor alternatively, you can click the status barclick the status bar


It seems that the module pandas is installed in a virtual envorinment which you are not accessing via VS Code.

I'd suggest you to install pandas in default python as well via

pip install pandas

This way the VS Code will work it out just fine.

Else:

In VS Code console, activate the virtual enviornment in which you have installed the pandas module, and then run it. It should work