Nash
Nash

Reputation: 562

Why can't I use Pandas in Jupyter even with "Requirement already satisfied"

Issue With Jupyter

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

Answers (1)

Andy
Andy

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

Related Questions