How can I troubleshoot Python “Could not find platform independent libraries

前端 未结 7 1498
心在旅途
心在旅途 2020-11-28 09:59

I\'m trying to use Fontcustom to create an icon font using svg files and fontforge. I\'m on OSX.7. However, whenever I run the program I get the error

Could          


        
7条回答
  •  渐次进展
    2020-11-28 10:19

    If you made a virtual env, then deleted that python installation, you'll get the same error. Just rm -r your venv folder, then recreate it with a valid python location and do pip install -r requirements.txt and you'll be all set (assuming you got your requirements.txt right).

提交回复
热议问题