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
14 lines
234 B
#!/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 ..
|