Skip to content

Commit c4cdd45

Browse files
minor messages
1 parent 5c232c1 commit c4cdd45

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

kratos.gid/scripts/Launch.tcl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ proc Kratos::InstallAllPythonDependencies { } {
77
set py [Kratos::GetPythonExeName]
88
# Check if python is installed. minimum 3.5, best 3.9
99
set python_version [pythonVersion $py]
10-
if { $python_version <= 0 || [GidUtils::TwoVersionsCmp $python_version "3.9.0"] <0 } {
10+
if { $python_version <= 0 || [GidUtils::TwoVersionsCmp $python_version "3.10.8"] <0 } {
1111
::GidUtils::SetWarnLine "Installing python"
1212
if {$os eq "win"} {
1313
gid_cross_platform::run_as_administrator [file join $::Kratos::kratos_private(Path) exec install_python_and_dependencies.win.bat ] $dir
@@ -126,9 +126,11 @@ proc Kratos::ShowErrorsAndActions {errs} {
126126
W "$python_exe_path $install_pip_path"
127127
}
128128
"MISSING_PIP_PACKAGES" {
129+
W "Kratos package was not found on your system."
129130
set py [Kratos::GetPythonExeName]
130131
set python_exe_path [Kratos::ManagePreferences GetValue python_path]
131-
W "Run the following command on a terminal:\n $python_exe_path -m pip install --upgrade --force-reinstall --no-cache-dir $Kratos::pip_packages_required"
132+
W "Run the following command on a terminal:"
133+
W "$python_exe_path -m pip install --upgrade --force-reinstall --no-cache-dir $Kratos::pip_packages_required"
132134
}
133135
"DOCKER_NOT_FOUND" {
134136
W "Could not start docker. Please check if the Docker service is enabled."

0 commit comments

Comments
 (0)