我已经在ubuntu系统上完成了apt-get install fontforge
。当我在python代码中执行import fontforge
时,它将引发错误,如No module named fontforge
。
当我这样做pip install fontforge
时,它将引发错误,
Could not find a version that satisfies the requirement fontforge (from versions: )
No matching distribution found for fontforge
我如何安装fontforge的python库?
最佳答案
您可能需要安装python-fontforge
。
sudo apt-get install python-fontforge
之后,您应该可以在ubuntu的默认python版本中导入
fontforge
。您可以通过执行
/usr/bin/python -c "import fontforge;print(fontforge)"
进行验证。现在,这应该将路径打印到fontforge
python模块。关于Pip安装fontforge,提示找不到版本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32688726/