0

help please followed instructions get this error

[Makefile:372: install-zenmap] Error 1

is there a fix

5
  • 4
    Which instructions? Please provide more details about what you are trying to do, and also your operating system Commented Jun 11, 2023 at 13:33
  • i want to install zenmap.
    – Dean Dove
    Commented Jun 11, 2023 at 14:09
  • askubuntu.com/questions/1421263/…
    – Dean Dove
    Commented Jun 11, 2023 at 14:12
  • What is your version of Ubuntu? Commented Jun 11, 2023 at 14:20
  • Which all steps of that answer did you follow? Where did you get the error? Commented Jun 11, 2023 at 14:21

1 Answer 1

0

As I understood, looks like this issue is still opened, here: https://github.com/nmap/nmap/issues/2714
I have the same :(

upd: Successfully bypassed this error by downgrading setuptools to 62.0.0
First step:

sudo pip install setuptools==62.0.0

    error: externally-managed-environment

Python barks at you. Fixed by:

cd /usr/lib/python3.11
sudo rm EXTERNALLY-MANAGED

As been described here: https://www.makeuseof.com/fix-pip-error-externally-managed-environment-linux/

Second:

sudo pip install setuptools==62.0.0

And then you can check setuptools version with:

pip show setuptools

Worked for me.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .