如何在Python中添加/使用库(3.5.1)

问题描述 投票:0回答:2

我最近一直在使用 python,现在已经扩展到做一些事情,比如浏览网站和其他很酷的东西,我需要为这些东西导入新的库,比如 lxml、pandas、urllib2 等。所以我安装了 Python 3.5.1 并且也在使用 Wing IDE。我(认为)也设法使用这个教程安装了pip,但在

之后迷失了方向

运行 python get-pip.py

部分。

那么我该如何安装这些库来尝试新项目呢?谢谢!

python lxml libraries
2个回答
0
投票

python 3.5 已经附带了 pip,要使用它安装一些东西,请打开 cmd 并执行

python -m pip install library
来安装您想要的库,如果您需要命令的帮助,请执行
python -m pip --help


0
投票

如果您有或者您可以创建一个文件

requirements.txt
,其中包含您要安装的库,例如:

numpy==1.14.2
Pillow==5.1.0

您将位于包含该内容的文件夹中

requirements.txt
在我的情况下,我的项目的路径是

C:\Users\LE\Desktop\Projet2_Sig_Exo3\exo 3\k-means

现在只需输入

python -m pip install -r ./requirements.txt

以及您想要安装的所有库

C:\Users\LE\Desktop\Projet2_Sig_Exo3\exo 3\k-means>python -m pip install -r ./requirements.txt
© www.soinside.com 2019 - 2024. All rights reserved.