导航:首页 > 编程语言 > python库下载

python库下载

发布时间:2022-01-22 02:36:46

❶ 如何用pip安装python

这些方法都是很难操作,直接在系统盘下面输入:pip install requests

❷ python第三方库安装到哪里

将依赖包目录放置到*:\Python*\Lib\site-packages\中,即python的安装目录中。
首先确定API目录下是否有__init__.py文件,如果没有,请新建一个。
打开API主运行文件,查看里面的类名称。此处为main.py文件,类为class dcVerCode。
此处以导入main中的类dcVerCode为例。
打开__init__.py,输入:
from main import dcVerCode
这样就完成了依赖包的指定。
然后再在程序中导入该包即可,此处的依赖包名称为qqcr(即目录名称),所以输入:
import qqcr
即可完成包的导入。

❸ 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执行。

❹ 如何在安装pip3以及第三方python库

一。先安装python3

1. 先到官方网站下载python3的安装包,去downloads/source/ 下载的是Python-3.5.2.tar.xz

2. 上传包到服务器

3.解压

tar -xf Python-3.5.2.tar.xz

4.编译安装

安装必要依赖(至少需要如下两个,我个人就遇到如下两个)

yum install openssl-devel -y

yum install zlib-devel -y

好了现在可以安心的编译咯:

cd Python-3.5.2./configure --prefix=/opt/Python #安装目录可以自己定义无所谓。
make
make install

编译完成后会在如 /opt/下生成Python的文件夹 ,没错这就是编译完成的python --为了方便之行小伙伴们可以自己定义一个软连接如下:

# ln -s /opt/Python/bin/python3 /usr/bin/python3

这样就可以直接食用python3了如下:

❺ python下载的包都在哪里

python下载的包所在位置

打开python的安装文件夹

找到Lib文件夹双击打开

找到site-packages文件夹打开,然后显示的就是下载的所有python包

更多Python知识,请关注:Python自学网!!

❻ python pip 下载不了第三方库

用pip或者easy_install安装的时候经常会遇到这种问题的,版本的原因是因为pip和easy_install的库会舍弃一些老版本的第三方库,对于很久不更新的甚至会彻底舍弃。有些时候确实也会出现timeout的情况,原因你懂得~

我通常的解决方法有三种:

  1. pip不行就试试easy_install,反之亦然

  2. 去这个网站(http://www.lfd.uci.e/~gohlke/pythonlibs/)找你要的第三方库,直接下载,解压,放到你的python路径下的Lib目录中

  3. 直接去官方下载源码安装

上述三种方法适用于Win,Linux,Mac

另外……你是为了测试什么东西吗?xp可以换了……

❼ 如何安装Python图型处理库Python Imaging Library

1、下载PIL的Source Kit(因为这个包支持全部平台) Imaging--1.1.6.tar.gz
2、解压缩包 tar -zxvf Imaging-1.1.6.tar.gz
3、进入到解压后的目录 cd Imaging-1.1.6
4、Build pakage: python setup.py build_ext -i
5、测试; python selftest.py
6、安装 python setup.py install
执行完上述操作后,可以直接在程序用使用 import Image进行使用PIL中的Image类!

❽ 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库安装

你这个是在安装什么库呢

一般安装就是pip install xxx
或者去下载这个库的文件 pip install 文件路径

❿ 求 python 64位安装包下载

软件介绍:

python是一款面向对象、解释型、动态数据类型的高级编程设计语言。它拥有语言上的简洁性、可读性和易维护性,在图形处理、数学处理、文本处理、系统编程、数据库编程等领域都被广泛应用。

所需工具:点击下载 python

安装教程

1、下载好安装包,双击运行“python-3.6.2-amd64.exe”程序,弹出软件安装向导,点击“Install Now”开始安装;

2、等待设置进度完成,文件解压缩,请稍等片刻。

3、设置成功,点击“close”关闭python自动安装界面;

python 64位安装报错

第一次安装时出现错误如下:

“An error occurred ring the installation of assembly

'Microsoft.VC90.CRT,version=9.0.30729.1,publicKeyToken=........”

解决方法:

1、先卸载旧版python和相应库,删除安装文件夹,要确保卸载干净。

2、装2.7.13版本去官网找64位系统的安装文件,msi的后缀,装的时候不要选为所有用户要选仅对当前用户,我也没找到原因,经过几次尝试这个没有报错。

3、添加进环境变量cmd命令。

阅读全文

与python库下载相关的资料

热点内容
压缩因子定义 浏览:968
cd命令进不了c盘怎么办 浏览:214
药业公司招程序员吗 浏览:974
毛选pdf 浏览:659
linuxexecl函数 浏览:727
程序员异地恋结果 浏览:374
剖切的命令 浏览:229
干什么可以赚钱开我的世界服务器 浏览:290
php备案号 浏览:990
php视频水印 浏览:167
怎么追程序员的女生 浏览:487
空调外压缩机电容 浏览:79
怎么将安卓变成win 浏览:459
手机文件管理在哪儿新建文件夹 浏览:724
加密ts视频怎么合并 浏览:775
php如何写app接口 浏览:804
宇宙的琴弦pdf 浏览:396
js项目提成计算器程序员 浏览:944
pdf光子 浏览:834
自拍软件文件夹名称大全 浏览:328