前置作業
在安裝 pip 之前,當然需要先將 PyPy 安裝好。此篇教學將在 Debian 上示範,安裝 PyPy 的指令為:
# 更新
apt-get -y update
# 安裝 PyPy 與 curl
apt-get -y install curl pypy
安裝 pip
安裝 pip 相當簡單,指令如下:
# 安裝 pip
curl https://bootstrap.pypa.io/get-pip.py | pypy
# 更新 pip
pypy -m pip install --upgrade pip
使用 pip
使用方式如下:
# 安裝 module
# 範例:pypy -m pip install [module-name]
pypy -m pip install requests
# 移除 module
# 範例:pypy -m pip uninstall [module-name]
pypy -m pip uninstall requests
Environment :
・ Debian
Reference :
・ PyPy