You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Fix] Update installation guide with new isolated requirements
Added quick installation instructions for InternNav, including installation commands and environment setup details for both Isaac Sim and Habitat environments.
By default, only the core modules are installed. It allows you to inherit the base class and implement your own models or benchmarks. In order to use different functionalities of InternNav tool, several install flags are provided:
178
+
-`[isaac]`: install all requires for [Isaac environment](#isaac-sim-environment), follow the instructions below to install the evaluation environment
179
+
-`[habitat]`: install all requires for [Habitat environment](#habitat-environment), follow the instructions below to install the evaluation environment
180
+
-`demo`: install all requires to run the gradio demo for visualization usage
181
+
-`model`: install all requires to train and evaluate all provided models included cma, rdp, navdp, internvla_n1
182
+
-`internvla_n1`: quick installation of internvla_n1 to inference
183
+
184
+
usage example:
185
+
```bash
186
+
pip install -e .[model]
187
+
pip install -e .[isaac,demo]
188
+
pip install -e .[internvla_n1,habitat]
189
+
```
190
+
### Install Models
191
+
For quick usage and deploy models, InternNav provide client-server design for easy use of model prediction. More details can be find at [inference_only_demo](https://githubtocolab.com/InternRobotics/InternNav/blob/main/scripts/notebooks/inference_only_demo.ipynb) and [real_world_agent_demo](). Install the requires:
192
+
```bash
193
+
# create a new conda env, the model server can be isolated from the evaluation env
Our toolchain provides two Python environment solutions to accommodate different usage scenarios with the InternNav-N1 series model:
174
200
@@ -177,7 +203,7 @@ Our toolchain provides two Python environment solutions to accommodate different
177
203
178
204
Choose the environment that best fits your specific needs to optimize your experience with the InternNav-N1 model. Note that both environments support the training of the system1 model NavDP.
179
205
180
-
### Isaac Sim Environment
206
+
### Install with Isaac Sim Environment
181
207
#### Prerequisite
182
208
- Ubuntu 20.04, 22.04
183
209
- Python 3.10.16 (3.10.* should be ok)
@@ -189,7 +215,7 @@ Choose the environment that best fits your specific needs to optimize your exper
189
215
190
216
Before proceeding with the installation, ensure that you have [Isaac Sim 4.5.0](https://docs.isaacsim.omniverse.nvidia.com/4.5.0/installation/install_workstation.html) and [Conda](https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html) installed.
191
217
192
-
**Pull our latest Docker image with everything you need**
218
+
**Pull our latest Docker image with everything you need** (~17GB)
<!-- To help you get started quickly, we've prepared a Docker image pre-configured with Isaac Sim 4.5 and InternUtopia. You can pull the image and run evaluations in the container using the following command:
@@ -243,13 +269,14 @@ For InternUtopia installation, you can find more detailed [docs](https://internr
If you need to train or evaluate models on [Habitat](#optional-habitat-environment) without physics simulation, we recommend the following setup and easier environment installation.
0 commit comments