Reputation: 562
Hey there. So I'm trying to learn Python for data manipulation. Obviously pandas is needed. I am using Windows 10 and have installed Jupyter through the console. I have had no problem getting into the jupyter notebook on my localhost and running basic commands like print. However, I cannot use pandas for some reason. Any guidance of where to look would be appreciated.
Upvotes: 1
Views: 160
Reputation: 3170
Is this a new kernel? If so, !pip
runs pip using the system environment, not the kernel environment. Delete the !
at the beginning.
Upvotes: 2