升級 Python NumPy
Muhammad Maisam Abbas
2021年7月8日
本文將介紹在 Python 中升級 NumPy 包的方法。
升級 Python NumPy
我們可以分別使用 Python 2 和 Python 3 的 pip
和 pip3
包管理器將 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 包。
Author: Muhammad Maisam Abbas
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