问题
I've been trying to modify the default Python compiler/run command in Geany.
Some searching indicated that I would need to modify `/usr/share/geany/filetypes.python's last two lines as follows
#compiler=python -m py_compile "%f"
#run_cmd=python "%f"
compiler=python3 -c "import py_compile; py_compile.compile('%f')"
run_cmd=python3 "%f"
After restarting Geany however, Build -> Set Build Commands
still shows the old commands and attemping to run a py3 script causes errors.
回答1:
First at all: Don't change the global configuration for something like this, as this will change default behaviour for all system users and might lead into confusion.
The changes inside file /usr/share/geany/filetypes.python
will be overwritten in changes done inside your home on ~/.config/geany/filedefs/filetypes.python
.
When using the menu Build->Set Build Commands
it will be saved also there. In fact, there is no need to update the file manually, but via the menu. This will also have the advantage, changes will be visible without restarting Geany.
回答2:
Add '3' to the end of "python" on the Build->Set Build Commands
menu, as mentioned above.
Under Python commands, you should see:
- Compile python -m py_compile "%...
Add '3' to the end of python here
- Compile python3 -m py_compile "%...
来源:https://stackoverflow.com/questions/29105941/how-do-i-make-python3-the-default-python-in-geany