wsl --install -d Ubuntu
sudo apt update
sudo apt install python3 python3-pip python3-venv graphviz
cd /mnt/c/Users/seu_usuario/Desktop/pasta_destino
python3 -m venv venv
source venv/bin/activate
pip install graphviz py2cfg
from py2cfg import CFGBuilder
# Construa o CFG a partir do arquivo Python de teste
cfg = CFGBuilder().build_from_file('arquivo', 'seu_arquivo.py')
# Gere a visualização do CFG e salve como SVG
cfg.build_visual('arquivo-fib', 'svg')