Virtual Community: An Open World for Humans, Robots, and Society
197
stars
61
commits
Python
primary language
Jun 15, 2026
updated
ICLR 2026
Qinhong Zhou*, Hongxin Zhang*, Xiangye Lin*, Zheyuan Zhang*, Yutian Chen, Wenjun Liu, Zunzhe Zhang, Sunli Chen, Lixing Fang, Qiushi Lyu, Xinyu Sun, Jincheng Yang, Zeyuan Wang, Bao Chi Dang, Zhehuan Chen, Daksha Ladia, Quang Vinh Dang, Jiageng Liu, Chuang Gan
Virtual Community is an open-world platform that simulates human-robot coexistence in shared communities, featuring a physics-based multi-agent simulator and real-world 3D scenes to study embodied social intelligence at scale.
vico Python package; assets moved to vico/assets/.We're using Python 3.11, CUDA 11.7 and Ubuntu 24.04. If you are using a different version, please modify the pyproject.toml accordingly.
Install uv if you haven't already.
Install all dependencies:
uv sync
source .venv/bin/activate
This creates a virtual environment, installs PyTorch (CUDA 11.7) from the PyTorch index, and fetches Genesis at the pinned commit — all automatically.
To run the example tour agent, also install the volume grid lib:
cd vico/agents/sg
./setup.sh
Assets are hosted on HuggingFace at Virtual-Community-AI/assets and are downloaded automatically the first time you run the environment.
To download them manually in advance:
python -c "from vico.tools.asset_utils import download_all_assets; download_all_assets()"
Assets include:
scene folder: contains the generated outdoor 3D scenes.robots folder: contains the robot models.objects folder: contains the object models.avatars folder: contains the human avatars' skin and motion.cars folder: contains the vehicle models including car, bus, bike, etc.If you want to use indoor scenes from GRUTopia (otherwise use --no_load_indoor_scene flag), please follow their instructions here to download the commercial_scenes.zip, and unzip it under vico/assets/ViCo/scene/.
After this step, the directory structure should be:
vico/assets/ViCo/
├── scene/
├──── v1/
├──── commercial_scenes/ (optional)
├── robots/
├── objects/
├── avatars/
└── cars/
Run the following script to test the simulation, where 15 agents will tour around the New York Scene.
./scripts/run_tour_agent.sh
Tips: Loading all indoor scenes and objects may take around 40G memory. If you encounter memory issues, consider adding --no_load_indoor_scene flag to the script to disable indoor scenes.
You can take direct control of one agent in the simulation using keyboard input:
./scripts/run_controlled_agent.sh
This spawns a 15-agent simulation where agent 0 is controlled by you. Controls:
| Key | Action |
|---|---|
↑ | Move forward |
← | Turn left |
→ | Turn right |
B | Pick up object |
N | Put down object |
M | Enter / exit bus |
< | Enter / exit bike |
> | Enter / exit building |
P | Print agent status |
If you encounter any issues, please check the following:
libstdcxx.so.6: version GLIBCXX_3.4.32 not found (required by sg/builder/builtin/libbuider.so)
To resolve this issue, you may need to update your GCC runtime. On Ubuntu/Debian:
sudo apt install --only-upgrade libstdc++6
Alternatively, install an updated runtime via conda-forge (without activating a full conda environment):
conda install -c conda-forge libstdcxx-ng
Only pygltflib-1.16.0 works for now, the latest version pygltflib-1.16.1 will slower the scene loading.
Virtual Community is built on lots of amazing open-source projects:
And inspiring works that influenced our design and implementation:
With many more not listed here, we are grateful for the contributions of the open-source community that made this project possible.
If you find this work useful, please consider citing:
@inproceedings{virtualcommunity,
title={Virtual Community: An Open World for Humans, Robots, and Society},
author={Qinhong Zhou and Hongxin Zhang and Xiangye Lin and Zheyuan Zhang and Yutian Chen and Wenjun Liu and Zunzhe Zhang and Sunli Chen and Lixing Fang and Qiushi Lyu and Xinyu Sun and Jincheng Yang and Zeyuan Wang and Bao Chi Dang and Zhehuan Chen and Daksha Ladia and Quang Vinh Dang and Jiageng Liu and Chuang Gan},
booktitle={The Fourteenth International Conference on Learning Representations},
year={2026},
url={https://openreview.net/forum?id=Qo0OZZoTLh}
}
Python
92.1%
C++
3.4%
HTML
2.4%
Shell
1.9%
Virtual Community: An Open World for Humans, Robots, and Society
197
stars
61
commits
Python
primary language
Jun 15, 2026
updated
ICLR 2026
Qinhong Zhou*, Hongxin Zhang*, Xiangye Lin*, Zheyuan Zhang*, Yutian Chen, Wenjun Liu, Zunzhe Zhang, Sunli Chen, Lixing Fang, Qiushi Lyu, Xinyu Sun, Jincheng Yang, Zeyuan Wang, Bao Chi Dang, Zhehuan Chen, Daksha Ladia, Quang Vinh Dang, Jiageng Liu, Chuang Gan
Virtual Community is an open-world platform that simulates human-robot coexistence in shared communities, featuring a physics-based multi-agent simulator and real-world 3D scenes to study embodied social intelligence at scale.
vico Python package; assets moved to vico/assets/.We're using Python 3.11, CUDA 11.7 and Ubuntu 24.04. If you are using a different version, please modify the pyproject.toml accordingly.
Install uv if you haven't already.
Install all dependencies:
uv sync
source .venv/bin/activate
This creates a virtual environment, installs PyTorch (CUDA 11.7) from the PyTorch index, and fetches Genesis at the pinned commit — all automatically.
To run the example tour agent, also install the volume grid lib:
cd vico/agents/sg
./setup.sh
Assets are hosted on HuggingFace at Virtual-Community-AI/assets and are downloaded automatically the first time you run the environment.
To download them manually in advance:
python -c "from vico.tools.asset_utils import download_all_assets; download_all_assets()"
Assets include:
scene folder: contains the generated outdoor 3D scenes.robots folder: contains the robot models.objects folder: contains the object models.avatars folder: contains the human avatars' skin and motion.cars folder: contains the vehicle models including car, bus, bike, etc.If you want to use indoor scenes from GRUTopia (otherwise use --no_load_indoor_scene flag), please follow their instructions here to download the commercial_scenes.zip, and unzip it under vico/assets/ViCo/scene/.
After this step, the directory structure should be:
vico/assets/ViCo/
├── scene/
├──── v1/
├──── commercial_scenes/ (optional)
├── robots/
├── objects/
├── avatars/
└── cars/
Run the following script to test the simulation, where 15 agents will tour around the New York Scene.
./scripts/run_tour_agent.sh
Tips: Loading all indoor scenes and objects may take around 40G memory. If you encounter memory issues, consider adding --no_load_indoor_scene flag to the script to disable indoor scenes.
You can take direct control of one agent in the simulation using keyboard input:
./scripts/run_controlled_agent.sh
This spawns a 15-agent simulation where agent 0 is controlled by you. Controls:
| Key | Action |
|---|---|
↑ | Move forward |
← | Turn left |
→ | Turn right |
B | Pick up object |
N | Put down object |
M | Enter / exit bus |
< | Enter / exit bike |
> | Enter / exit building |
P | Print agent status |
If you encounter any issues, please check the following:
libstdcxx.so.6: version GLIBCXX_3.4.32 not found (required by sg/builder/builtin/libbuider.so)
To resolve this issue, you may need to update your GCC runtime. On Ubuntu/Debian:
sudo apt install --only-upgrade libstdc++6
Alternatively, install an updated runtime via conda-forge (without activating a full conda environment):
conda install -c conda-forge libstdcxx-ng
Only pygltflib-1.16.0 works for now, the latest version pygltflib-1.16.1 will slower the scene loading.
Virtual Community is built on lots of amazing open-source projects:
And inspiring works that influenced our design and implementation:
With many more not listed here, we are grateful for the contributions of the open-source community that made this project possible.
If you find this work useful, please consider citing:
@inproceedings{virtualcommunity,
title={Virtual Community: An Open World for Humans, Robots, and Society},
author={Qinhong Zhou and Hongxin Zhang and Xiangye Lin and Zheyuan Zhang and Yutian Chen and Wenjun Liu and Zunzhe Zhang and Sunli Chen and Lixing Fang and Qiushi Lyu and Xinyu Sun and Jincheng Yang and Zeyuan Wang and Bao Chi Dang and Zhehuan Chen and Daksha Ladia and Quang Vinh Dang and Jiageng Liu and Chuang Gan},
booktitle={The Fourteenth International Conference on Learning Representations},
year={2026},
url={https://openreview.net/forum?id=Qo0OZZoTLh}
}
Python
92.1%
C++
3.4%
HTML
2.4%
Shell
1.9%