Skip to content Skip to sidebar Skip to footer

Encountered An Error While Installing Jupyter Notebook Using Pip

ERROR: Command errored out with exit status 1: command: 'g:\python38\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '''''C:\Users\REVANTH SAI\AppData\Local\Te

Solution 1:

You need to update your setuptools first.

pip install setuptools --upgrade

There was a change in python 3.8 that caused this issue with older versions of setuptools.

Solution 2:

I am on Windows 10, and using Pyhton 3.8. Running first

pip install setuptools --upgrade

and then

pip install notebook

worked for me quite well. Thanks to @roberto

Post a Comment for "Encountered An Error While Installing Jupyter Notebook Using Pip"