Open Fubbes opened 6 years ago
Hi,
i need to install the adafruit_blinka libary on Raspberry PI 3. I followed the instructions on their website (https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi).
But when i want to install the libary i get the following error:
`sudo pip3 install adafruit-blinka Downloading/unpacking adafruit-blinka Downloading Adafruit-Blinka-0.2.7.tar.gz Running setup.py (path:/tmp/pip-build-2ur8glrn/adafruit-blinka/setup.py) egg_info for package adafruit-blinka /usr/lib/python3.4/distutils/dist.py:260: UserWarning: Unknown distribution option: 'python_requires' warnings.warn(msg) /usr/lib/python3.4/distutils/dist.py:260: UserWarning: Unknown distribution option: 'long_description_content_type' warnings.warn(msg) error in Adafruit-Blinka setup command: 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers Complete output from command python setup.py egg_info: /usr/lib/python3.4/distutils/dist.py:260: UserWarning: Unknown distribution option: 'python_requires'
warnings.warn(msg)
/usr/lib/python3.4/distutils/dist.py:260: UserWarning: Unknown distribution option: 'long_description_content_type'
error in Adafruit-Blinka setup command: 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers
Cleaning up... Command python setup.py egg_info failed with error code 1 in /tmp/pip-build-2ur8glrn/adafruit-blinka Storing debug log for failure /root/.pip/pip.log`
I hope someone can help me!
Try upgrading your setuptools first: sudo pip3 install setuptools --upgrade
sudo pip3 install setuptools --upgrade
Thanks frankzhao! I had the same issue and this worked for me!
Hi,
i need to install the adafruit_blinka libary on Raspberry PI 3. I followed the instructions on their website (https://learn.adafruit.com/circuitpython-on-raspberrypi-linux/installing-circuitpython-on-raspberry-pi).
But when i want to install the libary i get the following error:
`sudo pip3 install adafruit-blinka Downloading/unpacking adafruit-blinka Downloading Adafruit-Blinka-0.2.7.tar.gz Running setup.py (path:/tmp/pip-build-2ur8glrn/adafruit-blinka/setup.py) egg_info for package adafruit-blinka /usr/lib/python3.4/distutils/dist.py:260: UserWarning: Unknown distribution option: 'python_requires' warnings.warn(msg) /usr/lib/python3.4/distutils/dist.py:260: UserWarning: Unknown distribution option: 'long_description_content_type' warnings.warn(msg) error in Adafruit-Blinka setup command: 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers Complete output from command python setup.py egg_info: /usr/lib/python3.4/distutils/dist.py:260: UserWarning: Unknown distribution option: 'python_requires'
warnings.warn(msg)
/usr/lib/python3.4/distutils/dist.py:260: UserWarning: Unknown distribution option: 'long_description_content_type'
warnings.warn(msg)
error in Adafruit-Blinka setup command: 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers
Cleaning up... Command python setup.py egg_info failed with error code 1 in /tmp/pip-build-2ur8glrn/adafruit-blinka Storing debug log for failure /root/.pip/pip.log`
I hope someone can help me!