💻Intro
Quick disclaimer
Other quick notes
## Installing virtualenv on Deb-Based systems
sudo apt update
sudo apt install virtualenv
## Installing virtualenv on Arch based systems
sudo pacman -Syu virtualenv
## Usage
## I normally will do this in the folder/repo that the project was installed in.
## BE CAREFUL DOING THIS AS A ROOT USER, running pip as root can cause permissions issues later down the line
cd <repo>
virtualenv <virtualenvName>
source <virtualenvName>/bin/activate
pip install -r <requirements>
Last updated
