jonluca / Anubis

Subdomain enumeration and information gathering tool
https://jonlu.ca/anubis/
MIT License
1.18k stars 151 forks source link

readme.md: typo #5

Closed SandMouse closed 6 years ago

SandMouse commented 6 years ago

readme.md reads:

pip install -r requirements

While the filename is requirements.txt

Suggestion: since Anubis is running using Python 3.6 and I'm running both Python2 and Python3, I had to specify pip3 in order to get the requirements installed. (macos 10.13.2)

zoutepopcorn commented 6 years ago

Thanks for the great repo. I dont want errors on my system.

I got it now working in a docker:

FROM python:latest
MAINTAINER nobody
RUN apt-get update
WORKDIR /home
RUN git clone https://github.com/jonluca/Anubis
WORKDIR /home/Anubis 
RUN pip install -r requirements.txt
RUN pip install -e .[test]
RUN echo "echo 'https://github.com/jonluca/Anubis\n\nanubis -t reddit.com'" >> /root/.bashrc
CMD ["/bin/bash"]

or docker pull zoutepopcorn/anubis

jonluca commented 6 years ago

Yeah I've got a few installation bugs I need to clean up. Thanks for the report!