在本地设置健身房环境

Setting gym enviroment locally

我尝试运行健身房套餐的例子

这里是问题所在的行:

library(gym)

remote_base <- "http://127.0.0.1:5000"
client <- create_GymClient(remote_base)

# Create environment
env_id <- "CartPole-v0"
instance_id <- env_create(client, env_id)

错误是这样的:

Error in curl::curl_fetch_memory(url, handle = handle) : 
  Failed to connect to 127.0.0.1 port 5000: Connection refused

如何修复它?

我安装了 gym 包没有任何问题

我认为您需要在单独的终端中启动服务器。尝试

python gym_http_server.py

documentation on GitHub 中所述。