Added pip3 installation steps which avoid OSCP VM crashes.

Fixes #19
This commit is contained in:
Tib3rius 2019-08-12 16:46:53 -04:00
parent 571b871d99
commit 0bf92f5e06
1 changed files with 9 additions and 0 deletions

View File

@ -32,6 +32,15 @@ Once Python 3 is installed, pip3 can be used to install the other requirements:
$ pip3 install -r requirements.txt
```
Several people have indicated that installing pip3 via apt on the OSCP Kali version makes the host unstable. In these cases, pip3 can be installed by running the following commands:
```bash
$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
$ python3 get-pip.py
```
The "pip3" command should now be usable.
Several commands used in AutoRecon reference the SecLists project, in the directory /usr/share/seclists/. You can either manually download the SecLists project to this directory (https://github.com/danielmiessler/SecLists), or if you are using Kali Linux (**highly recommended**) you can run the following:
```bash