当前位置:首页 » 编程语言 » python库安装

python库安装

发布时间: 2022-02-10 20:56:05

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)注意记住你自己的库文件名,且不要与已有第三方库和标准库重名。

热点内容
开源服务器云存储多少钱 发布:2025-01-04 16:10:45 浏览:662
我的世界泥土商店服务器8月 发布:2025-01-04 15:58:40 浏览:822
怎么在电脑上重启机房服务器 发布:2025-01-04 15:40:02 浏览:869
摄影后期电脑配置i5怎么样 发布:2025-01-04 15:39:19 浏览:403
linux桥接设置 发布:2025-01-04 15:39:07 浏览:57
安卓屏幕怎么设置成老人用的 发布:2025-01-04 15:33:53 浏览:314
学电脑编程要多久 发布:2025-01-04 15:20:15 浏览:331
华为手机存储卡插哪 发布:2025-01-04 15:01:02 浏览:39
ftp是一种服务吗 发布:2025-01-04 14:59:41 浏览:161
宝宝商业保险怎么配置 发布:2025-01-04 14:53:20 浏览:786