You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
234 B

  1. #!/bin/bash
  2. # aptitude dependencies
  3. sudo apt install python3.10-venv python3-tk
  4. python3 -m pip install --user virtualenv
  5. python3 -m venv env
  6. source env/bin/activate
  7. which python3
  8. cd gym_minigrid/
  9. python3 -m pip install -e .
  10. cd ..