Skip to content

Commit

Permalink
still issues with the requests lib missing
Browse files Browse the repository at this point in the history
  • Loading branch information
ddelpiano committed Nov 26, 2024
1 parent 6f93448 commit bafaca6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- name: Install dependencies
working-directory: ./package/installers
run: pip install -r requirements.txt pyinstaller
run: pip install -r requirements.txt
- name: Build
working-directory: ./package/installers
run: pyinstaller --onefile installer.py
Expand Down
7 changes: 5 additions & 2 deletions installation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -180,11 +180,14 @@ else
echo " - please use the option desidered to run the script again."
fi

echo "### installing graphviz ###"
conda install -y python-graphviz

echo "### removing grpcio ###"
pip uninstall -y grpcio && pip uninstall -y grpcio-tools

echo "### installing grpcio ###"
conda install -y -c conda-forge grpcio

echo "### installing modeci_mdf ###"
pip install modeci_mdf
echo "### installing graphviz ###"
conda install -y python-graphviz
2 changes: 2 additions & 0 deletions package/installers/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pyinstaller==6.11.1
requests==2.32.3

0 comments on commit bafaca6

Please sign in to comment.