Python Virtual Environment (VENV)
Solve your python packages and library dependencies without collisions
Virtual Environment
to install python libraries (packages) without collision with Kali linux system packages
Install
apt install python3
apt install python3-pip
apt install python3-venv
Activate
Activate python virtual environment from your current working directory (where your tool or github project is cloned.
python3 -m venv myenv
source myenv/bin/activate
Last updated
Was this helpful?