摘要:
QuickstartInstall a package:$ pip install SomePackage==1.0 [...] Successfully installed SomePackageShow what files were installed:$ pip show --files SomePackage Name: SomePackage Version: 1.0 Location: /my/env/lib/pythonx.x/site-packages Files: ../somepackage/__init__.py [...]List what pac... 阅读全文
posted @ 2013-08-22 17:16
一灯法师
阅读(188)
评论(0)
推荐(0)
摘要:
Using get-pip$ curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py$ [sudo] python get-pip.pyInstalling from source$ curl -O https://pypi.python.org/packages/source/p/pip/pip-X.X.tar.gz$ tar xvfz pip-X.X.tar.gz$ cd pip-X.X$ [sudo] python setup.py install 阅读全文
posted @ 2013-08-22 17:14
一灯法师
阅读(288)
评论(0)
推荐(0)