Ubuntu下安装PyPy
- 下载PyPy,解压即可使用
通过软连接将PyPy目录添加到
/usr/local/bin
。添加软连接的命令:
1
2
3
4sudo ln -s /media/hl/mydata/pypy3/bin/pypy3 /usr/local/bin
'''
ln -s source dist # 建立软连接
'''安装pip工具
1
pypy3 -m ensurepip
安装第三方库,如numpy
1
pypy3 -m pip install numpy
安装最新版本的numpy,运行可能会报错,AttributeError:readonly attribute '__module__'
,安装1.15.4版本的numpy即可解决。1
pypy3 -m pip install numpy==1.15.4
参考:
https://pypy.org/download.html
http://doc.pypy.org/en/latest/install.html
https://github.com/numpy/numpy/issues/12740
原文作者: hgis
原文链接: https://geolibra.github.io/2019/01/25/Ubuntu下安装PyPy/
许可协议: 知识共享署名-非商业性使用 4.0 国际许可协议