https://github.com/uber-common/deep-neuroevolution/archive/master.zip
“`
cd deep-neuroevolution-master
sudo python3 -m pip install -r requirements.txt
“`
install gym
https://github.com/openai/gym/archive/master.zip
“`
cd gym-master
sudo python3 -m pip install -e ‘.[atari]’
“`
install redis
http://download.redis.io/releases/redis-stable.tar.gz
“`
cd redis-stable
make
make test
sudo make install
“`
start redis
“`
redis-server redis_config/redis_master.conf
“`
“`
redis-server redis_config/redis_local_mirror.conf
“`
Run sample ES experiment
“`
python3 -m es_distributed.main master –master_socket_path /tmp/es_redis_master.sock –algo es –exp_file configurations/frostbite_es.json
“`
“`
python3 -m es_distributed.main workers –master_host localhost –relay_socket_path /tmp/es_redis_relay.sock –algo es –num_workers 40
“`