Skip to content

Installation

Mehtab Zafar edited this page Aug 24, 2019 · 3 revisions

Without Virtual environment

You must be using Python3 to run this project.

To install do the following things:

  • Clone this repository
    • git clone https://github.com/mzfr/gtfo
  • cd gtfo
  • pip install -r requirements.txt --user
  • gtfo -h

With Virtual environment

You must be using Python3 to run this project.

To install do the following things:

  • Clone this repository
    • git clone https://github.com/mzfr/gtfo
  • cd gtfo
  • python -m venv name-of-the-venv
    • Ex: python -m venv gtfo
  • Activate the virtual environment.
    • source gtfo/bin/activate
  • pip install -r requirements.txt
  • gtfo -h

Also if you have globally installed gtfo then you can write the path to the gtfo folder in your .bashrc or .zshrc this way you'll be able to execute gtfo from any directory.

Clone this wiki locally