About 542,000 results
Open links in new tab
  1. Import pandas could not be resolved from source Pylance ...

    Mar 25, 2022 · 38 I've been trying to use the packages pandas, numpy, matplotlib, seaborn in my "Visual Studio Code", but the program keeps showing me the following message: "import …

  2. python - How do I install pandas into Visual Studio Code ... - Stack ...

    Jun 12, 2021 · 12 I want to read an Excel CSV file, and after researching, I realized I need to import pandas as pd. Is there a way to install it into the Visual Studio Code? I have tried typing …

  3. VS Code: ModuleNotFoundError: No module named 'pandas'

    Aug 13, 2020 · Tried to import pandas in VS Code with import pandas and got Traceback (most recent call last): File "c:\Users\xxxx\hello\sqltest.py", line 2, in <module> import pandas

  4. Cannot import pandas in python3.13 free-threading mode

    Nov 6, 2024 · I'm trying out pandas in free-threading python. According to pandas document, pandas==2.2.3 can be used in python3.13. I installed python3.13 on Windows11 and created …

  5. python - Import CSV file as a Pandas DataFrame - Stack Overflow

    36 To read a CSV file as a pandas DataFrame, you'll need to use pd.read_csv, which has sep=',' as the default. But this isn't where the story ends; data exists in many different formats and is …

  6. python - Import multiple CSV files into pandas and concatenate …

    I would like to read several CSV files from a directory into pandas and concatenate them into one big DataFrame. I have not been able to figure it out though. Here is what I have so far: import …

  7. python - import pandas as pd ImportError: No module named …

    Feb 2, 2019 · Traceback (most recent call last): File "ML1.py", line 5, in <module> import pandas as pd ImportError: No module named pandas After if i try sudo pip install pandas i get :

  8. python - install and import pandas in vscode - Stack Overflow

    Sep 20, 2022 · I am a very beginner for vscode and python and computer stuff in general. I am having trouble importing pandas into vs code, and none of the previous posts was helpful for …

  9. ModuleNotFoundError: No module named 'pandas' - Stack Overflow

    Jun 20, 2017 · Whichever Python you wand to use and install the pandas If you want to use a specific version of Python in Windows cmd, just add the path of that Python in System Variables.

  10. python - How to read a Parquet file into Pandas DataFrame

    192 How to read a modestly sized Parquet data-set into an in-memory Pandas DataFrame without setting up a cluster computing infrastructure such as Hadoop or Spark? This is only a …