使用深度商店安装Eric6后,运行.py程序时报“The debugger backe...
Tofloor
poster avatar
b***j@126.com
deepin
2018-10-13 17:42
Author
使用深度商店安装Eric6后,运行.py程序时报“The debugger backend could not be started.”
测试代码:
import sysfrom PyQt5.QtWidgets  import QWidget,QApplicationif __name__=='__main__':    app=QApplication(sys.argv)    q=QWidget()    q.show()    sys.exit(app.exec_())


Reply Favorite View the author
All Replies
avatar
b***j@126.com
deepin
2018-10-16 03:30
#1
1、卸载Eric6
2、再自官网下载最新版的Eric6
3、解压至本地目录,进入此目录
4、使用命令sudo python3 install.py install完成安装
5、启动Eric6程序会出现警告信息:
Warning:
QSslSocket: cannot call unresolved function SSLv23_client_method
Warning:
QSslSocket: cannot call unresolved function SSL_CTX_new
Warning:
QSslSocket: cannot call unresolved function SSL_library_init
Warning:
QSslSocket: cannot call unresolved function ERR_get_error
Warning:
We got a connection error when networkLayerState is Unknown
6、打开此前.py程序,运行正常
Reply View the author
avatar
b***j@126.com
deepin
2018-10-16 05:16
#2
关闭程序窗口时,给出“The program has terminated with an exit status of 0.”
Reply View the author
avatar
b***j@126.com
deepin
2018-10-17 05:02
#3
使用如下命令可消除2#警告信息出现:
sudo apt install libssl1.0-dev
Reply View the author
avatar
cgp
deepin
2018-10-17 06:16
#4
商店那个有问题
Reply View the author
avatar
b***j@126.com
deepin
2018-10-17 22:12
#5
eric6.api安装路径:/usr/local/lib/python3.6/dist-packages/PyQt5/Qt/qsci/api/python
Reply View the author
avatar
b***j@126.com
deepin
2018-10-19 11:52
#6
我们可以直接进入这个网址下载汉化包:eric6-i18n-zh_CN-17.12.tar.gz
https://sourceforge.net/projects/eric-ide/files/eric6/stable/
解压后,cd进入目录使用命令完成汉化包安装:
sudo python3 install-i18n.py install


Reply View the author