Hi! I wonder if somebody could help me.
I recently installed the Ubiquity Image on RPi 3 Model B+, it works great.
I was previously using the PCA9685 driver for servo movement on Raspbian. I’m am now trying to implement this code onto the Ubiquity image and make it ROS compatible.
The problem I am having is when trying to run the following command:
- pip3 install adafruit-circuitpython-pca9685C
I get the following error:
Traceback (most recent call last):
File “/usr/bin/pip3”, line 11, in
sys.exit(main())
File “/usr/lib/python3/dist-packages/pip/init.py”, line 215, in main
locale.setlocale(locale.LC_ALL, ‘’)
File “/usr/lib/python3.5/locale.py”, line 594, in setlocale
return _setlocale(category, locale)
locale.Error: unsupported locale setting
Upon looking up how to fix this online, the fixes do not work because of how the locale settings are accessed on this image; so it seems. I’m quite new to this kind of stuff, so please let me know if there’s an easy fix to this. I would rather write this in Python, as most of my old code is in it.
But will consider moving to C++ if essential.