如何为python2.7安装numpy和scipy

时间:2017-11-10 12:49:44

标签: python python-2.7 numpy

我使用的是redhat Linux。我想为python2.7安装numpy和scipy。我尝试安装并执行以下活动:

1. download the numpy and scipy using wget command
2. extract the tar file using the tar command 
3. when I build using the python setup.py build and when I try the python setup.py commands the error happen as "This is the wrong setup.py file to run"    The setup.py file is found inside the folder.

例如:

/home/desktop/kk/python setup.py build

这里有kk,有setup.py文件。

问题和解决方案是什么?

2 个答案:

答案 0 :(得分:0)

实际上,使用pip更好,这是一个管理python包的好工具。 this is the installation guide 然后你可以输入:

  • pip install numpy
  • pip install sicpy

答案 1 :(得分:0)

简单方法:

  1. 使用pip并在终端上执行以下命令: pip安装numpy pip安装scipy 注意:要安装特定版本,请使用“==”作为后缀

     e.g. `pip install numpy==1.13.3`
    
  2. 使用easy_install并在终端上执行以下命令:

    easy_install numpy

    easy_install scipy

  3. Bulky Way(传统版)

    第1步:从 pypi (最好)或任何其他来源下载软件包。

    第2步:在所有软件包所在的位置提取软件包         那里(通常是前缀/ lib / pythonX.Y / site-packages )。你会         提取后获取文件“setup.py”。

    第3步:打开终端并导航到“setup.py”的位置         文件并执行python setup.py命令。