Preparing gymrecord to be snappified
This commit is contained in:
parent
758d819ad1
commit
69503dafb1
4 changed files with 25 additions and 2 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
import play
|
import play
|
||||||
import gym
|
import gym
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
python play_env.py --environment_name=PongNoFrameskip-v4 --logdir=playlogs
|
python gymrecord --environment_name=PongNoFrameskip-v4 --logdir=playlogs
|
||||||
|
|
16
requirements.txt
Normal file
16
requirements.txt
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
atari-py==0.2.6
|
||||||
|
cloudpickle==1.2.2
|
||||||
|
cycler==0.10.0
|
||||||
|
future==0.18.2
|
||||||
|
gym==0.15.4
|
||||||
|
kiwisolver==1.1.0
|
||||||
|
matplotlib==3.1.2
|
||||||
|
numpy==1.18.1
|
||||||
|
opencv-python==4.1.2.30
|
||||||
|
Pillow==7.0.0
|
||||||
|
pygame==1.9.6
|
||||||
|
pyglet==1.3.2
|
||||||
|
pyparsing==2.4.6
|
||||||
|
python-dateutil==2.8.1
|
||||||
|
scipy==1.4.1
|
||||||
|
six==1.14.0
|
6
setup.py
Normal file
6
setup.py
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
from distutils.core import setup
|
||||||
|
setup(name='gymrecord',
|
||||||
|
version='0.9',
|
||||||
|
scripts=['gymrecord'],
|
||||||
|
py_modules = ['play']
|
||||||
|
)
|
Loading…
Reference in a new issue