-
Notifications
You must be signed in to change notification settings - Fork 0
Installation guide
/SNESE_AR edited this page May 7, 2022
·
2 revisions
We recommend you to install cryptosploit in a python virtual environment, but you can also install cryptosploit on the main system.
python -m venv venv
source venv/bin/activate
pip install git+https://github.com/SNESEAR/cryptosploit.git --upgrade
deactivateNow you can use cryptosploit just with two commands.
source venv/bin/activate
cryptosploitsudo pip install git+https://github.com/SNESEAR/cryptosploit.git --upgradeWe use sudo to allow setup.py to add cryptosploit to /usr/bin.
Alternatively, you can install cryptosploit without sudo and modify your $PATH.
pip install git+https://github.com/SNESEAR/cryptosploit.git --upgrade
echo "export PATH=$PATH:~/.local/bin" >> ~/.bashrc