You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think this is because you imported 'find_packages' as a separate module (using 'from setuptools import...') but in line 15 you try to call it with setuptools.find_packages(). I deleted 'setuptools.' from this line and it solved the error.
However, it failed later with a 'Permission denied' error. This was solved by running the install command as sudo.
The text was updated successfully, but these errors were encountered:
Installing on Pi Zero V1.1
Setup.py returned error in line 15:
NameError: name 'setuptools' is not defined.
I think this is because you imported 'find_packages' as a separate module (using 'from setuptools import...') but in line 15 you try to call it with setuptools.find_packages(). I deleted 'setuptools.' from this line and it solved the error.
However, it failed later with a 'Permission denied' error. This was solved by running the install command as sudo.
The text was updated successfully, but these errors were encountered: