Here is my way of visualizing graphs in my graph theory research
# Create a virtual environment
python3 -m venv env
# source /path/to/venv/bin/activate
# e.g. source virtualenvname/bin/activate
# On Unix or MacOS, using the csh shell:
source /path/to/venv/bin/activate.csh
# On Unix or MacOS, using the fish shell:
source /path/to/venv/bin/activate.fish
# On Windows using the Command Prompt:
path\to\venv\Scripts\activate.bat
# On Windows using PowerShell:
path\to\venv\Scripts\Activate.ps1
# Install packages
pip install -r requirements.txtCredit: John Tan-Aristy