errror on jupyter when importing pymysql

Viewed 28

jupyternotebook error ....................when i tried using the install function on jupyter or on cmd prompt it keeps showing me this errror below........................................................ enter image description here

1 Answers

You can't install a package using pip inside a Jupyter notebook. You need to either install the package using anaconda or using the pip command in a command prompt / terminal example is below. example pip command

If the package is already installed you should restart the Jupyter kernel.

Related