How to install PyPy in anaconda

你说的曾经没有我的故事 提交于 2019-12-03 09:55:05

You can install PyPy3 from conda-forge:

conda install -c conda-forge pypy3.6

And then use it like your regular python executable (notice that this is a different Python interpreter, not a package)

pypy3 -c "import sys; print(sys.version)"

It works on Linux and OSX.

There is an alternative approach maintained by Riccardo Vianello on GitHub:

https://github.com/rvianello/conda-pypy

It basically involves using his conda channel instead of the default one to install necessary packages. Some basic ones are provided.

Puppy's version support can found here: http://pypy.org/download.html.

It is distributed specific, so if you don't have a supported district you can. Try using the build option.

Without more info on your Linux and python versions, it is hard to add more.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!