Python 找不到可执行文件f95、f77、xlf、ifc、g77

Python 找不到可执行文件f95、f77、xlf、ifc、g77,python,macos,numpy,setup.py,Python,Macos,Numpy,Setup.py,我正在尝试使用安装glmnet。当我运行python setup.py并选择交互式选项进行构建时,我发现以下无法定位可执行文件XXX错误。我已经通过pip安装了scipy和numpy running build running config_cc unifing config_cc, config, build_clib, build_ext, build commands --compiler options running config_fc unifing config_fc, confi

我正在尝试使用安装glmnet。当我运行
python setup.py
并选择交互式选项进行构建时,我发现以下
无法定位可执行文件XXX
错误。我已经通过pip安装了scipy和numpy

running build
running config_cc
unifing config_cc, config, build_clib, build_ext, build commands --compiler options
running config_fc
unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options
running build_src
build_src
building extension "glmnet._glmnet" sources
f2py options: []
  adding 'build/src.macosx-10.9-intel-2.7/fortranobject.c' to sources.
  adding 'build/src.macosx-10.9-intel-2.7' to include_dirs.
build_src: building npy-pkg config files
running build_py
running build_ext
customize UnixCCompiler
customize UnixCCompiler using build_ext
customize NAGFCompiler
Could not locate executable f95
customize AbsoftFCompiler
Could not locate executable f90
Could not locate executable f77
customize IBMFCompiler
Could not locate executable xlf90
Could not locate executable xlf
customize IntelFCompiler
Could not locate executable ifort
Could not locate executable ifc
customize GnuFCompiler
Could not locate executable g77
customize Gnu95FCompiler
Found executable /usr/local/bin/gfortran
customize Gnu95FCompiler
customize Gnu95FCompiler using build_ext
running scons
--Return--
> /Users/rose/221/tagger/tagger/glmnet-python/setup.py(32)<module>()->None
运行构建
正在运行配置\u cc
统一config\u cc、config、build\u clib、build\u ext、build命令--编译器选项
运行配置功能
统一config\u fc、config、build\u clib、build\u ext、build命令--fcompiler选项
运行build\u src
构建src
建筑扩展“glmnet.\U glmnet”来源
f2py选项:[]
将“build/src.macosx-10.9-intel-2.7/fortranobject.c”添加到源代码中。
添加“build/src.macosx-10.9-intel-2.7”以包含目录。
build_src:构建npy pkg配置文件
运行build\u py
运行build_ext
自定义UnixC编译器
使用build_ext自定义UnixCompiler
定制NAGFCompiler
找不到可执行文件f95
定制绝对FTFCompiler
找不到可执行文件f90
找不到可执行文件f77
自定义IBMF编译器
找不到可执行文件xlf90
找不到可执行文件xlf
自定义英特尔编译器
找不到可执行ifort
找不到可执行文件ifc
定制gnuff编译器
找不到可执行文件g77
定制GNU95F编译器
找到可执行文件/usr/local/bin/gfortran
定制GNU95F编译器
使用build_ext自定义Gnu95FCompiler
烤饼
--返回--
>/Users/rose/221/tagger/tagger/glmnet-python/setup.py(32)(->无

无法定位的
不是真正的错误。一个软件包不太可能要求您安装5个不同的fortran编译器。

bit看起来它找到了
gfortran
,并且正在尝试使用它。你确定这就是问题所在吗?更重要的是:你面临的实际问题是什么?如果你只是在日志中看到一些可怕的东西,但一切正常……那里没有任何错误,所以你很好。如果以后有什么东西坏了,告诉我们什么东西坏了。(您可能还想告诉我们您在哪个平台上,以及Python/gfortran/scipy/等的版本,以及从何处获得Python的操作系统,从Python.org安装,手动构建,使用package manager X安装,…)这是我面临的实际问题:。我在运行MacOS,大约一周前我自己编译了Python,我认为它有巨大的功能选项。我的scipy和numpy版本是最新的,我也刚刚安装了gfortran。我可以提供更多信息吗?这是什么
setup.py
prints out的完整打印输出吗?我不确定“无法定位”是否真的是错误,因为这个包不太可能要求您安装5个不同的fortran编译器。