First, clone the vivt repository from GitHub:
1. clone and go to the vivt directory
git clone https://github.com/Silicon27/vivt.git
cd vivt2. install all dependencies
pip install -r requirements.txt3. make vivt an executable
chmod +x vivt.py4. move vivt to the users bin
mv vivt.py ~/bin/vivt
mv ~/vivtfiles ~/bin/To make sure bin exists within your PATH, run:
echo $PATHIf ~/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