我用的是Kubuntu 16.04和kde 5.6.4。我已经安装了蟒蛇3.5,其中包括ipythonqtcontole。
要启动ipython qtconole,我必须在终端中键入ipython qtconsole
。我能为它创建一个启动程序吗?
我知道有一个包,但它不链接到蟒蛇3.5,我也不想要另一个单独的蟒蛇3.5。
abhishek ~ $ apt-cache search ipython3-qtconsole
ipython3 - enhanced interactive Python 3 shell
ipython3-qtconsole - enhanced interactive Python 3 shell - Qt console
最佳答案
尝试创建具有所需ipython
的绝对路径的a Desktop file,例如:
[Desktop Entry]
Type=Application
Exec=/anaconda/bin/ipython qtconsole %u
Name=Jupyter Console
GenericName=Qt Application
Comment=Run a new IPython QT Console
Categories=Qt;KDE;
# MimeType=application/x-your-mime-type;
# Icon=some-icon
# X-DocPath=yourapp/index.html
# Terminal=false
将此文本文件保存在
~/.local/share/applications/ipython_qtconsole.desktop
中,然后将.desktop
文件拖到启动程序中。我只是猜测您的ipython的位置是
/anaconda/bin/ipython
;要确定正确的路径,请在终端中运行which ipython
。