jackw01 / led-control

Advanced WS2812/SK6812 RGB/RGBW LED controller with on-the-fly Python animation programming, web code editor/control interface, 1D, 2D, and 3D display support, and E1.31 sACN support
https://jackw01.github.io/led-control/
MIT License
162 stars 35 forks source link

Error when running setup.py - deprecation warning, script not starting :( #61

Open eliphaslevi1810 opened 3 months ago

eliphaslevi1810 commented 3 months ago

Hi everyone! Using an older Pi model with raspberry Pi OS that has been updated with Python 3.8 I have followed the latest indicated steps for setup on a Pi, however at line #5,

when I run "sudo python3 setup.py develop" I receive a message prompting me with the following:

/user/lib/python3/dist-packages/setuptools/installer.py:27: SetuptoolsDeprecationWarning: setuptools.installer is deprecated. Requirements should be satisfied by a PEP 517 installer. warnings.warn(

Any idea what can be causing this? Obviously a linux noob but I am pretty sure to have correctly installed/updated the required dependencies.

Thank you in advance for any help you can provide!

michael64w commented 1 month ago

Had the same error using a Raspberry pi 4, I am a complete noob to, but found out its related to SIMD errors. its looking for a library called pyfastnoisesimd which the pi cant install since the compiler is based on a different chip architecture ARM if i remember. i had chat gpt rewrite the setup script. also had install multiple libraries. but then it worked. if you need it i could look for the adjusted setup script

decode40 commented 3 days ago

Had the same error using a Raspberry pi 4, I am a complete noob to, but found out its related to SIMD errors. its looking for a library called pyfastnoisesimd which the pi cant install since the compiler is based on a different chip architecture ARM if i remember. i had chat gpt rewrite the setup script. also had install multiple libraries. but then it worked. if you need it i could look for the adjusted setup script

It would be amazing if you could post your script.