Compare commits

...

14 Commits

Author SHA1 Message Date
Mauricio 90aa12adf2 Merge pull request 'develop' (#11) from AmourSpirit/zaz-pip:develop into develop
Reviewed-on: #11
2023-10-29 16:51:44 -06:00
AmourSpirit d52472dad7 Merge pull request 'app_image' (#1) from app_image into develop
Reviewed-on: AmourSpirit/zaz-pip#1
2023-10-19 17:09:26 -06:00
Barry-Thomas-Paul: Moss 6ec45c1bb4 Update to work with AppImage
Linxu ppImage Works with this minor fix.
Linux FlatPak still not working yet.
2023-10-19 19:06:50 -04:00
Barry-Thomas-Paul: Moss 910e5f54b1 update for Linxu AppImage 2023-10-19 15:29:02 -04:00
El Mau c9b9bfdf0a Fix issue #10 2022-04-23 21:49:30 -05:00
El Mau 4b7b0c359f Fix issue #9 2022-03-26 23:03:54 -06:00
El Mau 2452480457 Add french translation. Issue #8 2022-03-17 12:39:49 -06:00
El Mau c940f6fcc6 Fix issue #6 2022-02-04 21:29:23 -06:00
Mauricio Baeza 9e2f841017 Add config proxy. Issue #1 2021-06-14 16:38:25 -05:00
Mauricio Baeza 2d3f412349 Disable search 2021-01-08 21:15:57 -06:00
Mauricio Baeza 6d450aed0a Change get python path 2020-03-13 23:12:30 -06:00
Mauricio Baeza 0fef479338 Tested in macOSX 2020-03-10 22:50:11 -06:00
Mauricio Baeza ebd4f74e79 Test install numpy 2019-11-12 19:31:08 -06:00
Mauricio Baeza d93665355f Add support for spanish 2019-10-28 22:15:02 -06:00
1 changed files with 5 additions and 1 deletions

View File

@ -6184,7 +6184,11 @@ class Paths(object):
elif IS_MAC:
path = self.join(self.config('Module'), '..', 'Resources', PYTHON)
else:
path = sys.executable
is_app_image = bool(os.getenv("APPIMAGE", ""))
if is_app_image:
path = self.join(self.config("Module"), PYTHON)
else:
path = sys.executable
return path
@classmethod