We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ee81ed commit 6ba2ddaCopy full SHA for 6ba2dda
editor-setup.md
@@ -101,7 +101,18 @@ If the version starts with 2, it's too old.
101
### Geany
102
103
1. Go to *Build*, then *Set Build Commands*.
104
-2. Replace `python` or `python2` with `python3` everywhere.
+2. Replace `python` or `python2` with `python3` everywhere. Or if you
105
+ are using Windows, run `python` on a terminal and enter these
106
+ commands:
107
+
108
+ ```py
109
+ >>> import sys
110
+ >>> print(sys.executable)
111
+ ```
112
113
+ You'll get a path to your python.exe. Replace `python` in the build
114
+ commands with this path. Most importantly, your *Execute* command
115
+ should be `"C:\your\path" "%f"`.
116
117
### gedit, pluma and Mousepad
118
0 commit comments