Evgeny Golyshev

Results 24 comments of Evgeny Golyshev

1. You have to add a `post-install` hook to `devices/rpi-2-b/raspbian-buster-armhf/post-install`. The hook might look like (I named it `run-pip3.sh`) ```bash #/bin/sh pip3 install adafruit-circuitpython-ads1x15 adafruit-circuitpython-bme280 ``` 2. Run `sudo env...

1. Go to `devices/rpi-2-b/raspbian-buster-armhf/` 2. Create a directory named `post-install` and go to the directory 3. Create a file named `run-pip3.sh` with the following contents ```bash #/bin/sh pip3 install adafruit-circuitpython-ads1x15...

yeah, you can either use multiple lines like that or put it in one line as `pip3 install adafruit-circuitpython-ads1x15 adafruit-circuitpython-bme280 Adafruit-Blinka adafruit-io`

Fortunately or unfortunately I'm not able to read people's mind, so 1) explain what you did step by step, 2) attach some tracebacks or anything else what could help me...

Yeah, the problem is 1) You have to create `post-install` under `devices/rpi-b/raspbian-buster-armhf` (actually in `devices/rpi-zero-w/raspbian-buster-armhf` but it symlinks to `devices/rpi-b/raspbian-buster-armhf`). 2) You're building the image for RPi 3 but not...

Attach the full build log, please. I need to see it to help you.

No, as I mentioned above you have to create the `post-install` directory under `devices/rpi-b/raspbian-buster-armhf` (**not** `devices/rpi-b` or anything else). Please, re-read my message carefully.

I asked you in one of my messages above to attach the full build log. To do that, redirect stderr to a file. For example, ``` sudo env INCLUDES=python3-pip,ssh,supervisor,DEVICE=rpi-zero-w ENABLE_WIRELESS=true...

I gave an example of how to get the build log file. Please, re-read my message carefully. In that example the log file is called `buildlog`.

According to the logs here's the problem: `WARNING: The directory '/home/yamuna-b/.cache/pip' or its parent directory is not owned or is not writable by the current user. The cache has been...