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 get the following error when running
sudo python3 setup.py develop
error: Multiple top-level packages discovered in a flat-layout: ['lib', 'data', 'media', 'renderers', 'MapConfig', 'visualizers', 'data_sources', 'configuration'].
To avoid accidental inclusion of unwanted files or directories,
setuptools will not proceed with this build.
If you are trying to create a single distribution with multiple packages
on purpose, you should not rely on automatic discovery.
Instead, consider the following options:
set up custom discovery (find directive with include or exclude)
use a src-layout
explicitly set py_modules or packages with a list of names
To find more information, look for "package discovery" on setuptools docs.
The text was updated successfully, but these errors were encountered:
Yeah, I am also running into this issue. I tried to fix it the way the error is telling me to, but I just seem to run into more issues then with other repositories seemingly being deprecated and no longer working.. :D
Hi @xxxgumby xxxgumby
After doing some research, it looks like newer releases of python doesn't support this workflow. I ended up downloading an older version of Raspian that contained an older version of Python. I'm sure there's a better way of doing this, I'm not much of a Python programmer. I can see what link I used directly and share it with you when I have more time, but I got it somewhere within this archive and based it on the date of the last commit of this repo
That at least got me me beyond that point/issue. I'm having other issues getting it to work but I haven't spent much time on debugging that separate issue.
per these directions here: https://github.com/JohnMarzulli/categorical-sectional/blob/release/media/os_install.md
I get the following error when running
sudo python3 setup.py develop
error: Multiple top-level packages discovered in a flat-layout: ['lib', 'data', 'media', 'renderers', 'MapConfig', 'visualizers', 'data_sources', 'configuration'].
To avoid accidental inclusion of unwanted files or directories,
setuptools will not proceed with this build.
If you are trying to create a single distribution with multiple packages
on purpose, you should not rely on automatic discovery.
Instead, consider the following options:
find
directive withinclude
orexclude
)src-layout
py_modules
orpackages
with a list of namesTo find more information, look for "package discovery" on setuptools docs.
The text was updated successfully, but these errors were encountered: