Python matplotlib install issue on Windows 7 for freetype, png packages

前端 未结 8 1103
梦谈多话
梦谈多话 2020-12-16 12:46

Using Python 2.7 on Windows 7. Here is the command I am using to install and error message. Wondering if anyone have met with similar issues before? Thanks.

         


        
8条回答
  •  轮回少年
    2020-12-16 13:23

    As you can see it png and freetype modules are missing. You need to install them separately.

    Try doing the following :

    > pip install freetype-py
    > pip install pypng
    > pip install matplotlib
    

提交回复
热议问题