python庫安裝
㈠ python庫怎麼安裝
python庫的安裝方法:
1.下載distribute,http://pypi.python.org/pypi/distribute/0.6.30;
2.如果沒有配置python的環境變數,那麼先要在環境變數PATH這一項里加入python安裝目錄,如C:\python32。加入了就直接到下一步;
3.解壓後在命令行中cd 到distribute-0.6.30文件夾目錄,輸入python setup.py install執行。等待安裝完成;
4.在環境變數PATH中加入python安裝目錄的Scripts文件夾,如C:\python32\Scripts。這裡面有easy_install;
5.解壓下載好的第三方庫如openpyxl-1.6.1.tar.gz,在命令行中cd 到解壓後目錄openpyxl-1.6.1的上一層,輸入easy_install openpyxl-1.6.1執行。
㈡ 如何用pip安裝python庫
這些方法都是很難操作,直接在系統盤下面輸入:pip install requests
㈢ python第三方庫安裝到哪裡
1、首先通過pip安裝的第三方庫,一般都在python安裝路徑下的Libsite-packages目錄,這里可以通過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非官方包下載,二進制文件,下載安裝方便.
㈤ python庫安裝問題
下載最新版的python3.5 3.6 或者2.7
會默認安裝pip的,你這個沒有安裝成功,建議卸載,重裝
安裝的時候path到環境變數,不要勾掉
還有就是第二個命令打錯了,是easy_install
㈥ python庫安裝
你這個是在安裝什麼庫呢
一般安裝就是pip install xxx
或者去下載這個庫的文件 pip install 文件路徑
㈦ python如何安裝re庫
re庫是Python關於正則表達式的一個內置模塊,使用時無需下載,直接import即可。我們首先來看看re.py自己頭部的注釋是如何描述自己的:
這個模塊提供與Perl語言中類似的正則表達式匹配操作,支持bytes和unicode兩種格式的字元串,處理的字元串可以包含空字元以及超出ASCII碼范圍的字元(比如中文字元)。
正則表達式中既有'A'、'a'這種就代表自身的一般字元,又有一些具有特定含義的特殊字元,如|、(等。特殊字元既可以作為一個單純的值表示它自身,也可以影響它周邊1的正則表達式的解釋。
re庫中還包含一些特殊的字元序列,由\和一個字元組成的特殊序列在下表列出,如果\之後的字元不在下列表格中,正則表達式將會匹配字元本身,如\c匹配的就是字元c本身。我們發現如果 \小寫字母 代表了某一含義,那麼對應的 \大寫字母 常常代表它的補集。
㈧ python如何安裝numpy庫
首先我們要找到python安裝的位置
win+R打開
進入以後輸入: where python
找到安裝目錄後,找到Scripts文件夾所在位置:如ProgramsPythonPython36Scripts
然後去網上下載對應的文件:
看清楚自己是32位還是64位,將這個文件下載到Scripts文件夾下面
在cmd命令行中輸入:pip3.6 install D:-1.15.4-cp36-none-win_amd64.whl
這樣就可以安裝好了。
更多Python相關技術文章,請訪問Python教程欄目進行學習!以上就是小編分享的關於python如何安裝numpy庫的詳細內容希望對大家有所幫助,更多有關python教程請關注環球青藤其它相關文章!
㈨ Python第三方庫安裝
你的圖片太花了,看不到幾個字母。
不過,你這個問題描述,也能大致理解是什麼情況。建議做如下處理試一下:
(1)找到你的 Python 安裝目錄,找到下面的 site-packages 文件夾,這個文件夾用於存放第三方庫,而且也是環境變數路徑(如果你在安裝Python時勾選了寫入環境變數的話,如果沒有就自己加入進去即可);
(2)將你自己的庫文件放到這個文件夾里;
(3)之後就可以像使用其他庫一樣使用了,如import sys這種的;
(4)注意記住你自己的庫文件名,且不要與已有第三方庫和標准庫重名。