Skip to content

Commit c69d928

Browse files
authored
Merge pull request #527 from foosel/hotfix/downgrade-pip
Pin pip to 9.0.3 until OctoPrint 1.3.9 is released
2 parents 513f914 + 26668e5 commit c69d928

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/modules/octopi/start_chroot_script

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ pushd /home/pi
3636
sudo -u pi virtualenv oprint
3737

3838
# first lets upgrade pip (the shipped version is way too old...)
39-
sudo -u pi /home/pi/oprint/bin/pip install --upgrade pip
39+
# issue #526 - pin pip to 9.0.3 until OctoPrint 1.3.9 is released
40+
sudo -u pi /home/pi/oprint/bin/pip install pip==9.0.3
4041

4142
# OctoPrint & pyserial
4243
if [ "$OCTOPI_INCLUDE_OCTOPRINT" == "yes" ]

0 commit comments

Comments
 (0)