Skip to content

Commit 9fa0f64

Browse files
Fix: corrected package installation for windows
1 parent 49497e2 commit 9fa0f64

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

release/one_click_windows_gui/create_installer_windows.sh

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,17 @@ pip install "../../dist/pydiaid-0.0.30-py3-none-any.whl[stable]"
2121

2222
# Creating the stand-alone pyinstaller folder
2323
pip install pyinstaller==4.10
24-
pyinstaller ../pyinstaller/pydiaid.spec -y
24+
25+
conda install -y -c conda-forge --strict-channel-priority ^
26+
scikit-optimize=0.9.0 ^
27+
numpy=1.23.5 ^
28+
openblas=0.3.23 ^
29+
scipy=1.10.1 ^
30+
pandas=1.3.4 ^
31+
matplotlib=3.6.0
32+
# geos ^
33+
34+
pyinstaller ../pyinstaller/pydiaid.spec -y --clean
2535
conda deactivate
2636

2737
# If needed, include additional source such as e.g.:

0 commit comments

Comments
 (0)