I’m trying to install the Spinning Up library from OpenAI on my macOS and following the installation steps. However, when I check if it’s properly set up, I run into issues.
I executed the following command:
python -m spinup.run ppo --hid [32,32] --env Walker2d-v2 --exp_name installtest
Yet, I encounter the following error:
Traceback (most recent call last):
File “/Users/Leon/spinningup/spinup/utils/run_entrypoint.py”, line 10, in
thunk = pickle.loads(zlib.decompress(base64.b64decode(args.encoded_thunk)))
File “/Users/Leon/anaconda/lib/python3.6/site-packages/cloudpickle/cloudpickle.py”, line 800, in _make_skel_func
closure = _reconstruct_closure(closures) if closures else None
File “/Users/Leon/anaconda/lib/python3.6/site-packages/cloudpickle/cloudpickle.py”, line 792, in _reconstruct_closure
return tuple([_make_cell(v) for v in values])
TypeError: ‘int’ object is not iterable
What could be causing this problem?