fixes in PyBullet deep_mimic to allow running in pip version

This commit is contained in:
Erwin Coumans
2019-02-11 08:51:07 -08:00
parent 12e6478689
commit 1bd201eb43
13 changed files with 56 additions and 28 deletions

View File

@@ -12,4 +12,16 @@ cd pybullet
if [ -e pybullet.dylib ]; then
ln -f -s pybullet.dylib pybullet.so
fi
if [ -e pybullet_envs ]; then
rm pybullet_envs
fi
if [ -e pybullet_data ]; then
rm pybullet_data
fi
if [ -e pybullet_utils ]; then
rm pybullet_utils
fi
ln -s ../../../examples/pybullet/gym/pybullet_envs .
ln -s ../../../examples/pybullet/gym/pybullet_data .
ln -s ../../../examples/pybullet/gym/pybullet_utils .
echo "Completed build of Bullet."