pip安裝python
『壹』 如何用pip安裝python庫
這些方法都是很難操作,直接在系統盤下面輸入:pip install requests
『貳』 用pip安裝python第三方包的時候顯示錯誤,怎麼辦
pip 不是在python解釋器中運行。而是在windows的命令行下運行,pip在PythonScripts目錄
下,cmd,cd到該目錄,然後輸入pip install googlemaps 。
『叄』 Python:如何正確的使用pip安裝文件
它實際上並不構建和安裝包,但是它確實做了 egg_info 步驟,如果在平台上可以用的軟體包。你可以從你的輸出中看到這個( 或者從 ~/.pip/pip.log):
Running setup.py egg_info for package mercurial
『肆』 如何用python的pip安裝mysqldb
在win7下安裝python包工具pip方法如下:
在安裝pip前,請確認win系統中已經安裝好了python,和easy_install工具,如果系統安裝成功,easy_install在目錄C:Python27Scripts 下面,進入命令行,然後把目錄切換到python的安裝目錄下的Script文件夾下,運行 easy_inatall pip。pip安裝成功後,在cmd下執行pip。
『伍』 python 第三方庫怎麼安裝
【方法一】: 通過setuptools來安裝python模塊
首先下載
NOTE: 最好下載個setuptools,本人是15.2版本,裡麵包含了ez_setup
運行 python ez_setup.py
D:\work\installation\setuptools-15.2\setuptools-15.2>python ez_setup.py > 1.txt
Extracting in c:\users\admini~1\appdata\local\temp\tmpbxikxf
Now working in c:\users\admini~1\appdata\local\temp\tmpbxikxf\setuptools-15.2
Installing Setuptools
......
Copying setuptools-15.2-py2.7.egg to c:\python27\lib\site-packages
setuptools 15.2 is already the active version in easy-install.pth
Installing easy_install-script.py script to C:\Python27\Scripts
Installing easy_install.exe script to C:\Python27\Scripts
Installing easy_install-2.7-script.py script to C:\Python27\Scripts
Installing easy_install-2.7.exe script to C:\Python27\Scripts
Installed c:\python27\lib\site-packages\setuptools-15.2-py2.7.egg
Processing dependencies for setuptools==15.2
Finished processing dependencies for setuptools==15.2
運行 easy_install py
D:\work>easy_install py #py 為第三方庫文件
Searching for py
Best match: py 1.4.26
Adding py 1.4.26 to easy-install.pth file
Using c:\python27\lib\site-packages
Processing dependencies for py
Finished processing dependencies for py
【方法二】: 通過pip來安裝python模塊
安裝 easy_install pip
D:\work>easy_install pip
Searching for pip
Best match: pip 6.1.1
Processing pip-6.1.1-py2.7.egg
pip 6.1.1 is already the active version in easy-install.pth
Installing pip-script.py script to C:\Python27\Scripts
Installing pip.exe script to C:\Python27\Scripts
Installing pip2.7-script.py script to C:\Python27\Scripts
Installing pip2.7.exe script to C:\Python27\Scripts
Installing pip2-script.py script to C:\Python27\Scripts
Installing pip2.exe script to C:\Python27\Scripts
Using c:\python27\lib\site-packages\pip-6.1.1-py2.7.egg
Processing dependencies for pip
Finished processing dependencies for pip
運行 pip install xlrd
Usage:
pip <command> [options]
Commands:
install Install packages.
uninstall Uninstall packages.
freeze Output installed packages in requirements format.
list List installed packages.
show Show information about installed packages.
search Search PyPI for packages.
wheel Build wheels from your requirements.
zip DEPRECATED. Zip indivial packages.
unzip DEPRECATED. Unzip indivial packages.
help Show help for commands.
General Options:
-h, --help Show help.
--isolated Run pip in an isolated mode, ignoring
environment variables and user configuration.
-v, --verbose Give more output. Option is additive, and can be
used up to 3 times.
-V, --version Show version and exit.
-q, --quiet Give less output.
--log <path> Path to a verbose appending log.
--proxy <proxy> Specify a proxy in the form
[user:passwd@]proxy.server:port.
--retries <retries> Maximum number of retries each connection should
attempt (default 5 times).
--timeout <sec> Set the socket timeout (default 15 seconds).
--exists-action <action> Default action when a path already exists:
(s)witch, (i)gnore, (w)ipe, (b)ackup.
--trusted-host <hostname> Mark this host as trusted, even though it does
not have valid or any HTTPS.
--cert <path> Path to alternate CA bundle.
--client-cert <path> Path to SSL client certificate, a single file
containing the private key and the certificate
in PEM format.
--cache-dir <dir> Store the cache data in <dir>.
--no-cache-dir Disable the cache.
--disable-pip-version-check
Don't periodically check PyPI to determine
whether a new version of pip is available for
download. Implied with --no-index.
【方法三】:直接從網上下載下可執行文件來安裝.
比如說,去 >>> pythonlibs <<< 網站,提供了很多Python非官方包下載,二進制文件,下載安裝方便.
『陸』 怎麼裝pip
pip是python的一個工具,用來安裝python包特別方便。
Linux系統是是內置python程序,因為許多Linux內置文件都是使用python來編寫的,比如說yum。
1.腳本安裝
通過腳本的方式可以保證都能夠安裝到最新版本的pip,同時操作簡單。
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
2.源碼包安裝
下載地址:https://pypi.org/search/?q=pip
wget --no-check-certific ate https://pypi.python.org/packages/source/p/pip/pip-10.0.1.tar.gz >>/dev/null
tar -zvxf pip-10.0.1.tar.gz >> /dev/null
cd pip.10.0.1
python3 setup.py build
python3 setup.py install
注意,這里是安裝到python3中,默認是安裝到python所鏈接的具體版本中。
3.python安裝
這種方式,直接通過python安裝,與腳本安裝類似,但是這個安裝的是當前python版本所以依賴的pip,可能版本較低,因為內置python版本並不高。
yum upgrade python-setuptools
yum install python-pip
『柒』 安裝python3後使用pip和pip3的區別是什麼
1、其實這兩個命令效果是一樣的,沒有區別:
(1)比如安裝庫numpy,pip3 install numpy或者pip install numpy:只是當一台電腦同時有多個版本的Python的時候,用pip3就可以自動區分用Python3來安裝庫。是為了避免和Python2發生沖突的。
(2)如果你的電腦只安裝了Python3,那麼不管用pip還是pip3都一樣的。
2、安裝了python3之後,會有pip3
(1)使用pip install XXX :
新安裝的庫會放在這個目錄下面:python2.7/site-packages;
(2)使用pip3 install XXX :
新安裝的庫會放在這個目錄下面:python3.6/site-packages;
(3)如果使用python3執行程序,那麼就不能import python2.7/site-packages中的庫。
『捌』 python怎麼安裝pip模塊
python安裝pip模塊的方法:1、進入官網下載pip安裝包並解壓;2、打開命令提示符,進入到pip文件目錄下;3、執行【python setup.py install】命令,等待pip模塊安裝完成即可。
具體步驟:
(推薦教程:Python入門教程)
首先進入官網下載pip安裝包。
然後將下載的包解壓出來,打開命令提示符窗口,並進入到pip文件目錄下。
最後在pip目錄下,輸入命令"python setup.py install"進行pip模塊安裝。安裝完成後會有"Finished"字樣。