File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 5
5
# conda activate pymarl
6
6
7
7
conda install pytorch torchvision torchaudio cudatoolkit=11.1 -c pytorch-lts -c nvidia -y
8
- pip install protobuf==3.20.2 sacred==0.8.2 numpy scipy gym==0.10.8 matplotlib seaborn \
8
+ pip install protobuf==3.20.2 sacred==0.8.2 numpy scipy gym==0.11 matplotlib seaborn \
9
9
pyyaml==5.3.1 pygame pytest probscale imageio snakeviz tensorboard-logger
10
10
pip install git+https://github.com/oxwhirl/smac.git
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ libsdl2-image-dev libsdl2-ttf-dev libsdl2-gfx-dev libboost-all-dev \
3
3
libdirectfb-dev libst-dev mesa-utils xvfb x11vnc
4
4
5
5
pip install --upgrade psutil wheel pytest
6
- pip install gfootball
6
+ pip install gfootball==2.10.2 gym==0.11
Original file line number Diff line number Diff line change 11
11
try :
12
12
gfootball = True
13
13
from .gfootball import GoogleFootballEnv
14
- except :
14
+ except Exception as e :
15
15
gfootball = False
16
+ print (e )
16
17
17
18
def env_fn (env , ** kwargs ) -> MultiAgentEnv :
18
19
return env (** kwargs )
You can’t perform that action at this time.
0 commit comments