2017年3月14日

PyPy - 安裝與使用 pip ( Install pip and use it with PyPy )

隨著 PyPy 日趨成熟,未來將會有更多機會使用它,因此本篇將如何替 PyPy 安裝 pip (package manager) 與其使用方式做個簡單的紀錄。(If you want to read this article in English, you can visit here)



前置作業
在安裝 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

熱門文章