Skip to content

v0.1.1 fix build scripts #47

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion install_mirte.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ cd $MIRTE_SRC_DIR || exit 1

# Install dependecnies to be able to run python3.8
sudo apt install -y python3.8 python3-pip python3-setuptools
pip3 install setuptools --upgrade

# Fix for https://github.com/pypa/setuptools/issues/4478, only in python 3.8
pip3 install setuptools==70.0.0

# Set piwheels as pip repo
sudo bash -c "echo '[global]' > /etc/pip.conf"
sudo bash -c "echo 'extra-index-url=https://www.piwheels.org/simple' >> /etc/pip.conf"
Expand Down
Loading