不使用 pip 安装 Python 包
在本文中,我们将学习如何在 Python 中安装没有 pip 的库。 我们还将学习如何使用 conda 命令在 Python 中安装包。
不使用 pip 命令安装 Python 库
在 Python 中,pip 命令是我们系统中安装开源库最常用的方法。 但是,除了 pip 命令之外,还有另一种手动安装 Python 库的方法。
要在不使用 pip 命令的情况下安装 Python 库,我们需要从 pypi.org 下载并安装包,然后使用 Python 运行 setup.py 文件。
本节介绍安装其他 Python 包之前要遵循的过程。
-
去谷歌搜索 pypi.org,你将被重定向到以下页面。
-
假设我们要安装 python 包 SciPy。 我们先将它写在搜索项目栏中,然后回车。
-
我们将获得不同库的列表,然后单击我们要安装的库,列表中的第一个包是所有包中最相关的。 在我们的例子中选择第一个,scipy 1.9.1。
-
单击所需的包后,我们将被重定向到下一页。 单击下载文件选项以移动到不使用 pip 下载 python 包的进一步过程。
-
点击下载文件后,我们会看到一些链接。 如果我们愿意,我们可以通过它们,但如果我们想直接安装包,我们可以单击源代码分发中的第一个链接。
-
单击链接后,将开始安装 python 包 SciPy,而无需使用 pip 命令。 我们将得到它的一个 zip 文件。
-
安装完成后,我们将单击显示在文件夹中以移动到我们安装了 zip 文件的文件夹。
现在我们被重定向到 zip 文件 scipy-1.9.1.tar 所在的文件夹。
-
我们打开压缩后的文件夹,然后将文件或文件夹拖到新的位置进行解压。 我们将按住压缩文件夹或单击鼠标右键,选择全部提取,然后按照屏幕上的说明解压缩全部内容。
我们已将所有文件提取到我们的系统中。
-
我们将以管理员身份打开命令提示符。 使用 cd 命令导航我们提取的目录。
cd ['directory']
-
使用以下命令在 Python 中运行 setup.py 文件。
python setup.py install
之后必须在我们的系统上安装必要的软件包。 要检查系统中是否安装了 Python 包,我们打开 cmd 提示符并导入我们要检查可用性的包。
import scipy
在此之后,我们将检查包的版本。
scipy.__version__
这说明系统中安装了scipy。
使用 Conda 命令安装 Python 包
我们还可以在 cmd 提示符下使用 conda 安装 python 包。
conda install scipy
conda 命令安装所有要求和包。
我们现在可以利用已安装的库导入我们的 Python 应用程序。
相关文章
使用 Python 将文件上传到 Google 云端硬盘
发布时间:2023/06/15 浏览次数:136 分类:Python
-
This article demonstrates uploading file to Google Drive using Python.
Python 子进程捕获输出
发布时间:2023/06/15 浏览次数:136 分类:Python
-
The main aim of this article is to demonstrate how can the output of a subprocess be captured, stored and shown in Python.
Python 子进程在运行时读取标准输出
发布时间:2023/06/15 浏览次数:127 分类:Python
-
The main aim of this article is to demonstrate how to read the stdout of a subprocess being executed in Python.
使用 Python 获取 CPU 数量
发布时间:2023/06/15 浏览次数:173 分类:Python
-
This tutorial will teach you to determine the number of CPUs using Python.
Python获取CPU温度
发布时间:2023/06/15 浏览次数:111 分类:Python
-
The main aim of this article is to demonstrate how to read and show CPU temperature with the help of the pythonnet library in Python.
Python 从网页中提取表格
发布时间:2023/06/15 浏览次数:50 分类:Python
-
The main aim of this article is to demonstrate how tables can be extracted from a webpage using Pandas and lxml in Python.
Python Antigravity模块的用途
发布时间:2023/06/15 浏览次数:72 分类:Python
-
Python has an unserious, playful side to it. One such is the antigravity module. What is this module all about?
在代码中安装 Python 模块
发布时间:2023/06/15 浏览次数:72 分类:Python
-
理想情况下,从 pip 安装 Python 模块非常方便; 为此,您必须在活动终端中输入 pip install module-name ,然后就完成了。
将 Gnuplot 与 Python 结合使用
发布时间:2023/06/15 浏览次数:131 分类:Python
-
Gnuplot 是一个开源命令行驱动的交互式数据绘图软件。 如果您是 Gnuplot 用户并且想在 Python 中使用它,那么您可以借助两个包 Gnuplot 和 PyGnuplot 轻松地做到这一点。