指导notepad ++在Ubuntu中更正python路径

时间:2019-03-05 10:34:55

标签: python notepad++ ubuntu-18.04

我喜欢在Windows中使用notepad++,因此我决定也使用snapd(当前版本为18.04仿生)将其安装在Ubuntu系统上。

类似于Windows,我试图将notepad++指向“运行”中的python可执行文件,然后使用Nppexec(使用How to Execute a Python File in Notepad ++?How to fix Notepad++ NppExec Errorhttp://csc.ucdavis.edu/~chaos/courses/nlp/Software/Windows/npp.html中的步骤)。

要找到python路径,我使用了'which python'来找到路径,我得到了

  

/ home / myname / anaconda3 / bin / python3

在“运行”中,将命令另存为:

 Z/home/myname/anaconda3/bin/python3 $(FULL_CURRENT_PATH)

然后使用nppexec运行:

python3 -u Hello_world.py

为此,我得到了错误:

  

CreateProcess()失败,错误代码为2

当我在nppexec中尝试其他操作时:

我在nppexec中使用以下方法尝试了其他建议的解决方案:

cd Z/home/myname/anaconda3/bin/python3
python3 "$(FULL_CURRENT_PATH)"

我收到错误消息:

  

处理完成(PID = 0)。退出代码-1)

我对进一步操作感到困惑,不确定是否与ubuntunotepad++相关

有什么想法吗?

0 个答案:

没有答案