Geany找不到python

时间:2018-04-12 05:41:30

标签: python windows geany

我一直在使用PyCharm一个月,但决定试试geany。

我花了好几个小时来查看网络和youtube上的所有安装和设置教程,甚至在我的书中它告诉你如何设置它。他们都说同样的话,据我所知,我完全按照他们的说法做了。 (我在这里发现了一个问题,问题完全相同,但从未得到过回答。)

转到Build> Set Build Commands,在Execute旁边的框中,输入python所在的路径。

这是我的路径

C:\Users\{username}\AppData\Local\Programs\Python\Python36-32\python.exe

我不知道为什么我的python安装在这么不寻常的地方。其他人看起来像这样:C:\Python35\python。那是问题吗?当我进入C:\Users\{username}时,AppData文件夹不可见。这是为了安全吗? Geany无法访问这些文件夹,因为它们不可见吗?

我很确定你不需要.exe所以我删除了它。

C:\Users\{username}\AppData\Local\Programs\Python\Python36-32\python "%f"

当我点击执行时,我可以看到命令窗口瞬间出现然后消失,可能是因为它尝试了,但是找不到python所以关闭。

我不知道%f是什么,但无论如何每个人都有。 在我将所有内容输入文本框之前,默认情况下在该文本框中,.\%e我不知道这是什么。

1 个答案:

答案 0 :(得分:0)

如果你有疑问%tags请查看Substitutions in commands and working directories部分的Geany手册:

  

第一次出现以下每个字符序列   每个命令和工作目录字段都被替换   在运行命令之前指定的项目。

%d - substituted by the absolute path to the directory of the current file.
%e - substituted by the name of the current file without the extension or path.
%f - substituted by the name of the current file without the path.
%p - if a project is open, substituted by the base path from the project.
%l - substituted by the line number at the current cursor position.
     

注意:如果在项目首选项中设置的基本路径不是绝对路径,那么它将被视为相对于目录的   项目文件。这允许存储在源树中的项目文件   指定相对于树的所有命令和工作目录   本身,这样整个树包括项目文件,都可以   在没有的情况下移动甚至检入和退出版本控制   重新配置>构建菜单。