Closed JSR694 closed 4 years ago
Looks like I needed to add torchvision=0.2.1
as a dependency in the conda env specification file.
Other problems with dependencies I noticed:
lockfile-0.12.2
--> lockfile==0.12.2
gym[all]==0.10.5lo
--> gym[all]==0.10.5
, but actually gym[all]==0.10.8
because otherwise I run into this error.Also needed to add OP3
itself as a dependency using conda develop ./OP3/
; otherwise the scripts can't find the op3
module.
Hope this helps.
Hi there, When I try to run training for the single block-stacking task, i.e.:
python exps/train_op3/train_op3.py --variant [stack, pickplace, cloth] --debug 0
I get an import error for
torchvision
. But when I try to add it to the env (viaconda install -n op3 torchvision
), conda complains about conflicts (and spends forever trying to resolve them).For context:
train_op3.py
.op3
module, so I added it to my conda env (using conda-build).Thanks!