Virtual Environment
Making a virtual environment prevents conflicts with the original system's software and is especially useful for installing or testing exploits.
Steps to Create and Use a Virtual Environment:
Create the Virtual Environment:
virtualenv temp_envActivate the Virtual Environment:
source temp_env/bin/activateNow you can install the required programs or dependencies within the virtual environment and proceed to run the exploit. This ensures that any changes made are confined to the virtual environment and do not affect the global system configuration.
You can also make Shortcuts in the Zshrc file.
Last updated