I've searched through other questions but have not found anything that has helped (most just suggest you do install pandas with conda or pip). In my jupyter notebook I'm trying to import pandas (import pandas as pd)
but I'm getting the following error:
ModuleNotFoundError: No module named 'pandas'
Some pertinent information:
- I'm using python3
- I've installed pandas using
conda install pandas - My conda environment has pandas installed correctly. After activating the environment, I type
pythoninto the terminal and from there I can successfully import pandas and use it appropriately. This leads me to believe that it is an issue with my jupyter notebook.