python-如何在Windows 7上正确升级numpy?

似乎全世界都在使用Linux或Mac,我在网上找不到任何答案来质疑“如何在Windows 7上正确升级numpy?”.我使用Windows 7,python 2.7和numpy 1.7.1,如何在计算机上升级到numpy 1.9.1?解决方法:我的建议是卸载numpy并重新...

似乎全世界都在使用Linux或Mac,我在网上找不到任何答案来质疑“如何在Windows 7上正确升级numpy?”.我使用Windows 7,python 2.7和numpy 1.7.1,如何在计算机上升级到numpy 1.9.1?

解决方法:

我的建议是卸载numpy并重新安装.卸载时,它将从计算机中删除旧版本的numpy.当您再次使用pip安装时,它将安装numpy的最新版本.

pip uninstall numpy #removes numpy with older version
pip install   numpy #install new version of numpy

本文标题为:python-如何在Windows 7上正确升级numpy?

基础教程推荐