且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

pip无法安装numpy错误代码1

更新时间:2023-01-14 21:52:24

安装扩展模块可能是pip的问题.这就是conda存在的原因. conda是开源的BSD许可的跨平台程序包管理器.它可以轻松安装NumPy.

Installing extension modules can be an issue with pip. This is why conda exists. conda is an open-source BSD-licensed cross-platform package manager. It can easily install NumPy.

两个选项:

  • Install Anaconda (http://www.continuum.io/downloads)
  • Install Miniconda (http://repo.continuum.io/miniconda/index.html) and then go to a command-line and type conda install numpy (make sure your PATH includes the location conda was installed to).