Krenthou
Krenthou

Reputation: 1

Cannot install jupyter

Every time I load jupyter notebook I get the error:

(venv) C:\Users\Kris\PycharmProjects\HelloWorld>jupyter notebook
'jupyter' is not recognized as an internal or external command,
operable program or batch file.

I reinstalled Pycharm, Python and Conda but the issue persists.

When running pip install jupyter, I do get some installation but it errors out at

Collecting MarkupSafe>=0.23 (from jinja2>=2.4->nbconvert->jupyter)
  Downloading https://files.pythonhosted.org/packages/b9/2e/64db92e53b86efccfaea71321f597fa2e1b2bd3853d8ce658568f7a13094/MarkupSafe-1.1.1.tar.gz
Collecting pywin32>=1.0; sys_platform == "win32" (from jupyter-core->nbconvert->jupyter)
  Could not find a version that satisfies the requirement pywin32>=1.0; sys_platform == "win32" (from jupyter-core->nbconvert->jupyter) (from versions: )
No matching distribution found for pywin32>=1.0; sys_platform == "win32" (from jupyter-core->nbconvert->jupyter)

How can I get Jupyter to install?

Upvotes: 0

Views: 1831

Answers (1)

Dewald Abrie
Dewald Abrie

Reputation: 1492

You can try this: python -m pip install jupyter and then python -m jupyter notebook.

Upvotes: 2

Related Questions