我尝试设置GitStats,但似乎无法在Git Bash的Windows 10上运行它。
我已将Gnuplot的环境变量添加到“ C:\ gnuplot \ bin”
已安装Gnuplot:
$ gnuplot --version
gnuplot 5.2 patchlevel 7
GitStats:
$ python gitstats ../ ../stats/
'C:\gnuplot\bin' is not recognized as an internal or external command,
operable program or batch file.
[0.04700] >> C:\gnuplot\bin --version
gnuplot not found
我如何使其正常工作?
答案 0 :(得分:2)
gitstats脚本包括:
# By default, gnuplot is searched from path, but can be overridden with the
# environment variable "GNUPLOT"
gnuplot_cmd = 'gnuplot'
if 'GNUPLOT' in os.environ:
gnuplot_cmd = os.environ['GNUPLOT']
这意味着您需要将GNUPLOT设置为gnuplot 可执行文件,而不是其父文件夹(bin
)。
set GNUPLOT=C:\gnuplot\bin\gnuplot.exe