首先安装python
https://www.python.org/downloads/windows/
安装时要勾选tcl/tk,否则之后将在绘图阶段会出错
Matplotlib is currently usingagg, which is a non-GUI backend
g++要和python都是32或者64位,达到链接库的兼容,否则在链接阶段会报错
g++查看位数的办法:
g++ -v
i686说明是23位
python查看位数的方法:
python
用到python的matplotlib库,使用pip工具进行安装,其中-i http://pypi.douban.com/simple --trusted-host pypi.douban.com
选项是更换安装源,默认源下载太慢
pip install matplotlib -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
编辑代码<