如何安装 Python 模块
包含 Python 定义和语句的文件被称为模块。模块是一个包含 Python 代码的文件;一个名为“Program”的文件是一个名为“Program”的模块。我们使用模块将复杂的程序分解为更小、更易管理的部分。模块还可以实现代码复用。我们可以将最常用的函数定义在一个模块中,并导入它,而不是将其复制到多个程序中。
在 Windows 上安装 Python 模块
Python 包管理器(pip)允许安装模块和包。打开终端并使用 pip 命令在整个系统上安装一个模块。
使用 Python 中的 PIP
PIP 是 Python 模块或包的包管理器。PIP 已内置在 Python 3.4 及以上版本中。
示例
使用以下命令从 Python 包索引安装模块的最新版本和任何依赖项。
C:\Users\Lenovo>pip install hashlib
输出
在安装任何模块之后,以下是输出结果 –
Collecting hashlib
Downloading hashlib-20081119.zip (42 kB)
---------------------------------------- 42.3/42.3 KB 2.1 MB/s eta 0:00:00
Preparing metadata (setup.py) ... error
error: subprocess-exited-with-error
× python setup.py egg_info did not run successfully.
│ exit code: 1
╰─> [7 lines of output]
Traceback (most recent call last):
File "<string>", line 2, in <module>
File "<pip-setuptools-caller>", line 34, in <module>
File "C:\Users\Lenovo\AppData\Local\Temp\pip-install-nhi53g8x\hashlib_9d646b53cf6c4df592a92567c02655dc\setup.py", line 68
print "unknown OS, please update setup.py"
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed
× Encountered error while generating package metadata.
╰─> See above for output.
note: This is an issue with the package mentioned above, not pip.
hint: See above for details.
WARNING: You are using pip version 22.0.4; however, version 22.2.2 is available.
You should consider upgrading via the 'C:\Users\Lenovo\AppData\Local\Programs\Python\Python310\python.exe -m pip install --upgrade pip' command.
注意 - 这将自动安装一个Python模块。通常,您可以使用虚拟环境或venv来安装模块而不是在整个计算机上安装。
为了使此功能正常工作,您需要设置pip。安装过程因平台而异。
需要Python 3.4或更高版本,因为pip已包含在该版本中。
示例
如果pip不可用并且您使用的是Python 3.4或更高版本,请运行以下命令 –
C:\Users\Lenovo>py -3 -m ensurepip
输出
以下是上述代码的输出结果
Looking in links: c:\Users\Lenovo\AppData\Local\Temp\tmpvdjjyjwx
Requirement already satisfied: setuptools in c:\users\lenovo\appdata\local\programs\python\python310\lib\site-packages (58.1.0)
Requirement already satisfied: pip in c:\users\lenovo\appdata\local\programs\python\python310\lib\site-packages (22.0.4)
检查PIP版本
在命令行上找到Python的脚本目录,然后键入以下内容以验证您的版本:
C:\Users\Lenovo>python --version
输出结果如下 −
Python 3.10.5
注意
你可以使用pip来安装Python包。例如,要安装”某个项目”的最新版本 −
$ pip install 'SomeProject'
要安装特定版本,请使用以下命令
$ pip install 'SomeProject==1.4'
要安装大于或等于某个版本而小于另一个版本,请使用以下命令:
$ pip install 'SomeProject>=1,<2'
在Python中使用Conda
Conda是一个开源的软件包管理和环境管理系统,可在Windows、macOS、Linux和z/OS上运行。Conda可以快速安装、运行和更新软件包以及它们的依赖关系。
在您自己的计算机上,Conda使创建、保存、加载和切换环境变得简单。它被设计用于打包和分发Python程序,但也可用于任何语言的软件。
您可以借助Conda作为软件包管理器来搜索和安装软件包。Conda是一个环境管理器,因此如果您需要一个需要不同Python版本的软件包,则无需切换到另一个环境管理器。
搜索软件包
在后续步骤中,请使用Anaconda提示符或终端检查特定软件包(如”hiredis”)是否可用于安装。
(base) C:\Users\Lenovo>conda search hiredis
输出
以下是上述命令的执行输出-
Loading channels: done
# Name Version Build Channel
hiredis 1.1.0 py310h2bbff1b_1 pkgs/main
hiredis 1.1.0 py36h2bbff1b_1 pkgs/main
hiredis 1.1.0 py37h2bbff1b_1 pkgs/main
hiredis 1.1.0 py38h2bbff1b_1 pkgs/main
hiredis 1.1.0 py39h2bbff1b_1 pkgs/main
hiredis 2.0.0 py310h2bbff1b_0 pkgs/main
hiredis 2.0.0 py37h2bbff1b_0 pkgs/main
hiredis 2.0.0 py38h2bbff1b_0 pkgs/main
hiredis 2.0.0 py39h2bbff1b_0 pkgs/main
安装软件包
使用Anaconda Prompt或终端安装特定软件包,例如“hiredis” −
(base) C:\Users\Lenovo>conda install hiredis
输出
以下是上述命令的输出结果:
Collecting package metadata (current_repodata.json): done
Solving environment: done
## Package Plan ##
environment location: C:\Users\Lenovo\anaconda3
added / updated specs:
- hiredis
The following packages will be downloaded:
package | build
------------------------|-----------------
conda-4.14.0 | py39haa95532_0 937 KB
hiredis-2.0.0 | py39h2bbff1b_0 23 KB
----------------------------------------------------------
Total: 959 KB
The following NEW packages will be INSTALLED:
hiredis pkgs/main/win-64::hiredis-2.0.0-py39h2bbff1b_0
The following packages will be UPDATED:
conda 4.12.0-py39haa95532_0 --> 4.14.0-py39haa95532_0
Proceed ([y]/n)? y
Downloading and Extracting Packages
hiredis-2.0.0 | 23 KB | ############################################################################ | 100%
conda-4.14.0 | 937 KB | ############################################################################ | 100%
Preparing transaction: done
Verifying transaction: done
Executing transaction: done