我使用的是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文件。
问题和解决方案是什么?
答案 0 :(得分:0)
答案 1 :(得分:0)
简单方法:
使用pip并在终端上执行以下命令: pip安装numpy pip安装scipy 注意:要安装特定版本,请使用“==”作为后缀
e.g. `pip install numpy==1.13.3`
使用easy_install并在终端上执行以下命令:
easy_install numpy
easy_install scipy
Bulky Way(传统版)
第1步:从 pypi (最好)或任何其他来源下载软件包。
第2步:在所有软件包所在的位置提取软件包 那里(通常是前缀/ lib / pythonX.Y / site-packages )。你会 提取后获取文件“setup.py”。
第3步:打开终端并导航到“setup.py”的位置
文件并执行python setup.py
命令。