diff options
Diffstat (limited to 'lib/python/qmk/cli')
-rw-r--r-- | lib/python/qmk/cli/__init__.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/__init__.py b/lib/python/qmk/cli/__init__.py index 318adf378..292dcbe81 100644 --- a/lib/python/qmk/cli/__init__.py +++ b/lib/python/qmk/cli/__init__.py | |||
@@ -180,8 +180,14 @@ if int(milc_version[0]) < 2 and int(milc_version[1]) < 4: | |||
180 | print(f'Your MILC library is too old! Please upgrade: python3 -m pip install -U -r {str(requirements)}') | 180 | print(f'Your MILC library is too old! Please upgrade: python3 -m pip install -U -r {str(requirements)}') |
181 | exit(127) | 181 | exit(127) |
182 | 182 | ||
183 | # Make sure we can run binaries in the same directory as our Python interpreter | ||
184 | python_dir = os.path.dirname(sys.executable) | ||
185 | |||
186 | if python_dir not in os.environ['PATH'].split(':'): | ||
187 | os.environ['PATH'] = ":".join((python_dir, os.environ['PATH'])) | ||
188 | |||
183 | # Check to make sure we have all our dependencies | 189 | # Check to make sure we have all our dependencies |
184 | msg_install = 'Please run `python3 -m pip install -r %s` to install required python dependencies.' | 190 | msg_install = f'Please run `{sys.executable} -m pip install -r %s` to install required python dependencies.' |
185 | args = sys.argv[1:] | 191 | args = sys.argv[1:] |
186 | while args and args[0][0] == '-': | 192 | while args and args[0][0] == '-': |
187 | del args[0] | 193 | del args[0] |