系统相关
首页 > 系统相关> > python-如何在Windows 7上正确升级numpy?

python-如何在Windows 7上正确升级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
来源: https://codeday.me/bug/20191028/1954671.html