#!/bin/bash # aptitude dependencies sudo apt install python3.10-venv python3-tk python3 -m pip install --user virtualenv python3 -m venv env source env/bin/activate which python3 cd gym_minigrid/ python3 -m pip install -e . cd ..