升级 Python NumPy

Muhammad Maisam Abbas 2021年7月8日
升级 Python NumPy

本文将介绍在 Python 中升级 NumPy 包的方法。

升级 Python NumPy

我们可以分别使用 Python 2 和 Python 3 的 pippip3 包管理器将 NumPy 包升级到最新版本。下面给出了升级 NumPy 包的命令。

在 Python 2 中更新 NumPy

pip install numpy --upgrade

在 Python 3 中更新 NumPy

pip3 install numpy --upgrade

我们只需要根据我们的 Python 版本使用上述命令之一。如果此命令由于某种原因不起作用,或者可能 NumPy 包已经安装在我们的机器上但位于不同的路径中,我们可以使用以下命令。

对于 Python 2

pip install numpy --upgrade --ignore-installed

对于 Python 3

pip3 install numpy --upgrade --ignore-installed

即使我们的机器上已经安装了更新版本,上述命令也会强制安装最新版本的 NumPy 包。

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn