我的操作系统是Ubuntu16.04x84_64,
我已经安装了Anaconda4.2(python3.5.2),然后使用这个来安装gedit。
sudo apt-get install gedit-plugins
我试图安装一些插件,我经常使用,我遇到了一些问题。
(gedit:4429): libpeas-WARNING **: Error initializing Python Plugin `Loader: PyGObject initialization failed`
ImportError: could not import gobject (error was: ImportError("No module named 'gi'",))
(gedit:4429): libpeas-WARNING **: Please check the installation of all the Python related packages required by libpeas and try again
(gedit:4429): libpeas-WARNING **: Loader 'python3' is not a valid PeasPluginLoader instance
然后我按照一些答案来更改插件文件,
Loader=python3 -----> Loader=python
当它不断显示错误时:
'(gedit:4907): libpeas-WARNING **: The 'python' plugin loader has not been enabled'
我该怎么解决??
任何帮助都将不胜感激!
最佳答案
你试过跑步吗?
apt install python3-gi
关于python - 在安装了python3.5.2的Ubuntu16.04中,gedit出了点问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46405512/