2017-09-25 9 views
0

내 OS는 Ubuntu 16.04 x84_64, 입니다. Anaconda4.2 (python3.5.2)를 설치 한 다음 gedit을 설치하는 데 사용합니다.python3.5.2가 설치된 Ubuntu16.04에서 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' 

어떻게이 문제를 해결할 수 있습니까 ?? 도움이 될 것입니다.

+0

''python --version'은 뭐라고 말합니까? –

+0

Python 3.5.2 :: Anaconda 4.2.0 (64-bit) – YJHMITWEB

+0

설치 중에 gedit 설치 프로그램이 별명''python3''을 사용하려고 시도하는 것 같지만 파이썬의 별칭으로''python''을 사용하고 있습니다 3.이 명령을 사용하여 별칭''python3''을 추가 할 수 있습니다 :''alias python3 = "python"''그리고 나서 gedit 인스톨러를 다시 실행하십시오. 이 별칭은 세션을 닫을 때까지 유지됩니다. –

답변

0

실행 해 보셨습니까?

apt install python3-gi 
+0

예, 설치했습니다. – YJHMITWEB