First, clone the vivt
repository from GitHub:
1. clone and go to the vivt directory
git clone https://github.com/Silicon27/vivt.git
cd vivt
2. install all dependencies
pip install -r requirements.txt
3. make vivt an executable
chmod +x vivt.py
4. move vivt to the users bin
mv vivt.py ~/bin/vivt
mv ~/vivtfiles ~/bin/
To make sure bin
exists within your PATH, run:
echo $PATH
If ~/bin
is not listed, you can add it by modifying your shell configuration file (~/.bash_profile
, ~/.bashrc
, ~/.zshrc
, etc.):
echo 'export PATH="$HOME/bin:$PATH"' >> ~/.bash_profile
source ~/.bash_profile # Refresh the current shell session