Skip to content

Commit

Permalink
must use " dev" command to avoid python 2.7 error (#1547)
Browse files Browse the repository at this point in the history
Using Raspiberry Pi Zero + Explorer HAT, when performing openaps install, it stuck in the middle due to an error related with python version, as error message below:

Mock requires python ‘>=3.6’ but the running python is 2.7.16

At the Gitter, @samueldimers2 pointed the solution, where we must use the dev version, add the " dev" argument to the end of the install command as below:

curl -s https://raw.githubusercontent.com/openaps/oref0/master/bin/openaps-install.sh > /tmp/openaps-install.sh && bash /tmp/openaps-install.sh dev

I did it and worked fine, being possible to install openaps
  • Loading branch information
ichambon committed Jun 5, 2020
1 parent e39e2ad commit a7ef201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/Build Your Rig/pi-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Once you're logged in, run the following commands to start the OpenAPS install p

```
sudo bash
curl -s https://raw.githubusercontent.com/openaps/oref0/master/bin/openaps-install.sh > /tmp/openaps-install.sh && bash /tmp/openaps-install.sh
curl -s https://raw.githubusercontent.com/openaps/oref0/master/bin/openaps-install.sh > /tmp/openaps-install.sh && bash /tmp/openaps-install.sh dev
```

* Change your hostname (a.k.a, your rig's name). **Make sure to write down your hostname; this is how you will log in in the future as `ssh root@whatyounamedit.local`**
Expand Down

0 comments on commit a7ef201

Please sign in to comment.