GG6565
GG6565

Reputation: 138

pip install error with Raspberry OS 64 bit

Have anyone know how to solve this error?

pip install bluepy

error

error-subproccess-exited-with-error

Upvotes: 0

Views: 937

Answers (1)

Freddy Mcloughlan
Freddy Mcloughlan

Reputation: 4506

Try:

sudo apt-get install python-pip libglib2.0-dev

Then:

sudo pip install bluepy

If you get the same error, you may need to install / re-install cmake and try again:

sudo apt-get install make

Docs / Instructions

https://github.com/IanHarvey/bluepy

Upvotes: 2

Related Questions