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 noticed that this project has a dependency on nmap in requirements.txt. It was brought to my attention that people mistakenly install this in belief it's the well-known port scanning tool, which it's not. I've since removed the single release of my nmap library from PyPI, and so wanted to inform you that installation is likely to break until you remove this dependency (which I assume was incorrectly added to begin with).
Sorry for any inconvenience caused by this.
The text was updated successfully, but these errors were encountered:
@antonagestam The related dependency mentioned in the requirements.txt is no more available and is replaced by python-nmap.
Try installing python-nmap via this command (it's python3-nmap if you're on Linux):
pip install python-nmap
then pip freeze and check for the newly installed nmap related library. Copy it and replace it with the one in the requirements.txt and try pip install -r requirements.txt again.
Hi,
I noticed that this project has a dependency on nmap in requirements.txt. It was brought to my attention that people mistakenly install this in belief it's the well-known port scanning tool, which it's not. I've since removed the single release of my nmap library from PyPI, and so wanted to inform you that installation is likely to break until you remove this dependency (which I assume was incorrectly added to begin with).
Sorry for any inconvenience caused by this.
The text was updated successfully, but these errors were encountered: