bitbrute / evillimiter

Tool that monitors, analyzes and limits the bandwidth of devices on the local network without administrative access.
MIT License
1.62k stars 321 forks source link

error while installing evillimiter #142

Open hamzagh1998 opened 1 year ago

hamzagh1998 commented 1 year ago

netifaces.c:1:10: fatal error: Python.h: No such file or directory 1 | #include | ^~~~~~ compilation terminated. error: Setup script exited with error: command '/usr/bin/gcc' failed with exit code 1

soullessschizo commented 1 year ago

first install python3-dev, it fixed the issue for me.

sudo apt-get install python3-dev

DEATHxDEVIL commented 1 year ago

unning install /usr/lib/python3/dist-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools. warnings.warn( /usr/lib/python3/dist-packages/setuptools/command/easy_install.py:146: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools. warnings.warn( Traceback (most recent call last): File "/home/diablo/github_hacks/wifi_scripts/evillimiter/setup.py", line 78, in setup( File "/usr/lib/python3/dist-packages/setuptools/init.py", line 108, in setup return distutils.core.setup(**attrs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3/dist-packages/setuptools/_distutils/core.py", line 185, in setup return run_commands(dist) ^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3/dist-packages/setuptools/_distutils/core.py", line 201, in run_commands dist.run_commands() File "/usr/lib/python3/dist-packages/setuptools/_distutils/dist.py", line 969, in run_commands self.run_command(cmd) File "/usr/lib/python3/dist-packages/setuptools/dist.py", line 1213, in run_command super().run_command(command) File "/usr/lib/python3/dist-packages/setuptools/_distutils/dist.py", line 988, in run_command cmd_obj.run() File "/usr/lib/python3/dist-packages/setuptools/command/install.py", line 74, in run self.do_egg_install() File "/usr/lib/python3/dist-packages/setuptools/command/install.py", line 117, in do_egg_install cmd.ensure_finalized() # finalize before bdist_egg munges install cmd ^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3/dist-packages/setuptools/_distutils/cmd.py", line 111, in ensure_finalized self.finalize_options() File "/usr/lib/python3/dist-packages/setuptools/command/easy_install.py", line 335, in finalize_options self.local_index = Environment(self.shadow_path + sys.path) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3/dist-packages/pkg_resources/init.py", line 1044, in init self.scan(search_path) File "/usr/lib/python3/dist-packages/pkg_resources/init.py", line 1077, in scan self.add(dist) File "/usr/lib/python3/dist-packages/pkg_resources/init.py", line 1096, in add dists.sort(key=operator.attrgetter('hashcmp'), reverse=True) File "/usr/lib/python3/dist-packages/pkg_resources/init.py", line 2631, in hashcmp self.parsed_version, ^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3/dist-packages/pkg_resources/init.py", line 2679, in parsed_version self._parsed_version = parse_version(self.version) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/version.py", line 266, in init raise InvalidVersion(f"Invalid version: '{version}'") pkg_resources.extern.packaging.version.InvalidVersion: Invalid version: '1.4-py1' (package: adns)

austrian-oak commented 1 year ago

seems like a python3 error, i assume you are "python3 setup.py install" ing it.

johncarterofmars commented 10 months ago

I had the same error. I am using the exact instructions included on the front page with sudo. I also have python3-dev installed. On Rasp OS (bookworm). It doesn't seem to like it.

smithma84 commented 6 months ago

I had the same error. I am using the exact instructions included on the front page with sudo. I also have python3-dev installed. On Rasp OS (bookworm). It doesn't seem to like it.

@johncarterofmars Also having this issue on the latest Raspbian build since I upgraded from Bullseye. Did you end up finding a solution?