I am having issues trying to setup a pypy3 kernel for a Jupyter Notebook on my Windows 10 machine.
Following the instructions from these 2 other related threads (1, 2) I have used ipykernel
with the command pypy3 -m pip install ipykernel
but it seems the installation runs into an error at some point:
Collecting ipykernel
Using cached ipykernel-5.2.1-py3-none-any.whl (118 kB)
Collecting ipython>=5.0.0
Using cached ipython-7.14.0-py3-none-any.whl (782 kB)
Collecting traitlets>=4.1.0
Using cached traitlets-4.3.3-py2.py3-none-any.whl (75 kB)
Collecting jupyter-client
Using cached jupyter_client-6.1.3-py3-none-any.whl (106 kB)
Collecting tornado>=4.2
Using cached tornado-6.0.4.tar.gz (496 kB)
Requirement already satisfied: setuptools>=18.5 in c:\pypy3\site-packages (from ipython>=5.0.0->ipykernel) (44.0.0)
Collecting jedi>=0.10
Using cached jedi-0.17.0-py2.py3-none-any.whl (1.1 MB)
Collecting decorator
Using cached decorator-4.4.2-py2.py3-none-any.whl (9.2 kB)
Collecting pickleshare
Using cached pickleshare-0.7.5-py2.py3-none-any.whl (6.9 kB)
Collecting prompt-toolkit!=3.0.0,!=3.0.1,<3.1.0,>=2.0.0
Using cached prompt_toolkit-3.0.5-py3-none-any.whl (351 kB)
Collecting pygments
Using cached Pygments-2.6.1-py3-none-any.whl (914 kB)
Collecting backcall
Using cached backcall-0.1.0.tar.gz (9.7 kB)
Collecting colorama; sys_platform == "win32"
Using cached colorama-0.4.3-py2.py3-none-any.whl (15 kB)
Collecting ipython-genutils
Using cached ipython_genutils-0.2.0-py2.py3-none-any.whl (26 kB)
Collecting six
Using cached six-1.14.0-py2.py3-none-any.whl (10 kB)
Collecting jupyter-core>=4.6.0
Using cached jupyter_core-4.6.3-py2.py3-none-any.whl (83 kB)
Collecting pyzmq>=13
Using cached pyzmq-19.0.1.tar.gz (1.2 MB)
Collecting python-dateutil>=2.1
Using cached python_dateutil-2.8.1-py2.py3-none-any.whl (227 kB)
Collecting parso>=0.7.0
Using cached parso-0.7.0-py2.py3-none-any.whl (100 kB)
Collecting wcwidth
Using cached wcwidth-0.1.9-py2.py3-none-any.whl (19 kB)
ERROR: Could not find a version that satisfies the requirement pywin32>=1.0; sys_platform == "win32" (from jupyter-core>=4.6.0->jupyter-client->ipykernel) (from versions: none)
ERROR: No matching distribution found for pywin32>=1.0; sys_platform == "win32" (from jupyter-core>=4.6.0->jupyter-client->ipykernel)
Is it possible to get around that pywin32
error ?
Any help would be greatly appreciated.
jupyter_client
pip download. Could you purge your cached wheels and try again? – Virgiliovirginpip cache purge
from my reference python installation or from pypy3 ? Did it from both:pip3 cache purge
returnedFiles removed: 25
andpypy3 -m pip cache purge
returnedERROR: No matching packages
. Either waypypy3 -m pip install ipykernel
still throws the same error message. – Fishingpip install jupyter_client
still want to installpywin32
? If so, what happens if you download it from pypi.org/project/jupyter-client/#files ? – Virgiliovirginpip3 install ipykernel
andpypy3 -m pip install ipykernel
want to install pywin32, even when installing from the wheel or tar.gz files you linked. – Fishing