一、安装
ubuntu
- 官网下载对应版本:https://www.pypy.org/
- 解压:tar -jxvf pypy3.tar.bz2
- 创建链接:sudo ln -s /pypy3_dir/bin/pypy3 /usr/local/bin
- 安装pip:
(1)wget https://bootstrap.pypa.io/get-pip.py
(2)pypy3 get-pip.py
二、卸载
ubuntu
- 完全卸载pypy(软件及相关配置)
sudo apt-get remove --purge pypy - 完全卸载pypy及其依赖软件(慎用!这里会删除pypy及依赖pypy的软件包,一般上面第一条命令已经够用)
sudo apt-get remove --auto-remove pypy
sudo apt-get purge --auto-remove pypy - 清除pypy及其依赖软件的安装包
sudo apt-get autoclean pypy
三、使用
1. 安装依赖库
pypy3 -m pip install xxx
2. 运行代码
pypy3 xxx.py
网友评论