summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--GUI/package.ps16
1 files changed, 6 insertions, 0 deletions
diff --git a/GUI/package.ps1 b/GUI/package.ps1
index 5f15259..7e0eace 100644
--- a/GUI/package.ps1
+++ b/GUI/package.ps1
@@ -32,6 +32,12 @@ if (-Not (Test-Path $py_dir)) {
echo "../Scripts" >> Python/python310._pth
echo "import site" >> Python/python310._pth
+
+ ./Python/python.exe Python/get-pip.py
+
+ echo "Installing future"
+ echo "Assuming host has python 3.10.9 installed" # TODO test for this
+ python -m pip install future==0.18.2 --target Python/Lib/site-packages
}
$pip_path = "$py_dir/get-pip.py"