1
kidlj 2014-11-08 23:57:01 +08:00
$ pip install tornado
|
2
fatpa 2014-11-09 01:53:06 +08:00
pip install -U tornado
|
3
zhouzm 2014-11-09 10:51:44 +08:00
2楼正解
补充一个,安装指定版本:$ pip install SomePackage==1.0.4 再给一下 pip 官方手册地址: http://pip.readthedocs.org/en/latest/index.html |
4
shajiquan 2014-11-09 16:42:44 +08:00
$ pip install SomePackage # latest version
$ pip install SomePackage==1.0.4 # specific version $ pip install 'SomePackage>=1.0.4' # minimum version |