Skip to content

Commit 56f9550

Browse files
committed
Isolated python
1 parent 25a492d commit 56f9550

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/install.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ type nul > "%PROGRAMDATA%\ControlHub\logs\error.log"
1111
icacls "%PROGRAMDATA%\ControlHub" /grant *S-1-5-32-545:(OI)(CI)M /T
1212

1313
:: Download and install pip requirements
14-
python\python.exe -m pip install --upgrade -r requirements.txt
14+
python\ipython.bat -m pip install --upgrade -r requirements.txt
1515

1616
start "" "%~dp0ControlHub.exe"

src/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
DEBUG = os.getenv("DEBUG", "0") == "1"
3232

3333
app_path = os.getcwd()
34-
python_executable = os.path.join(app_path, "python", "python.exe")
34+
python_executable = os.path.join(app_path, "python", "ipython.bat")
3535

3636
program_data = os.getenv("PROGRAMDATA")
3737
logs_base = os.path.join(program_data, "ControlHub")

src/setup.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
; Inno Setup script for ControlHub installer
22

33
#define MyAppName "ControlHub"
4-
#define MyAppVersion "1.5.6"
4+
#define MyAppVersion "1.5.7"
55
#define MyAppPublisher "lixelv"
66
#define MyAppURL "https://control-hub.org"
77
#define MyAppExeName "ControlHub.exe"

0 commit comments

Comments
 (0)