我正在尝试在 64 位 Win7 上安装 OpenPIV (python build)。
下载安装文件(位于 - https://github.com/alexlib/openpiv-python)并运行:
python setup.py install
我收到错误:
error: Unable to find vcvarsall.bat
一些研究告诉我使用:
python setup.py build --compiler=mingw32
然后导致:
error: command 'gcc' failed: No such file or directory.
因此,我安装了 MinGW 并将 PATH 变量调整为 include C:\MinGW\bin
,gcc.exe
它位于何处,但没有骰子。在此之后,我尝试重新启动命令提示符、重新启动计算机、重新安装 MinGW 并重新安装安装文件。
运行 gcc:
C:\OpenPIV\> gcc
gcc:fatal error: no input files
compilation terminated.
我认为这意味着 gcc 有效,但是
python setup.py build --compiler=mingw32
仍然导致:
error: command 'gcc' failed: No such file or directory.
感谢大家。任何建议/提示将不胜感激。