When I type the fol...
 
Notifications
Clear all

When I type the following in Jupiter Notebook 'import pandas as pd'

1 Posts
2 Users
0 Reactions
13 Views
0
Topic starter
---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
Cell In[1], line 1
----> 1 import pandas as pd

ModuleNotFoundError: No module named 'pandas'
1 Answer
0

Hi Gurusamy Dharmar,

The issue you are facing is because pandas is not installed in your environment. To solve this issue, you need to install pandas in your environment. To do this, run the following command in your Jupyter Notebook:

!pip install pandas

After this, I hope your issue will be resolved. If you need any further assistance, feel free to ask.

Share: