Skip to content

Commit

Permalink
scripts + readme
Browse files Browse the repository at this point in the history
  • Loading branch information
codekansas committed Apr 1, 2024
1 parent 2a2983c commit fe2f269
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,24 @@
# kscale-sim-library
# K-Scale Sim Library

## Getting Started

1. Clone this repository:

```bash
git clone git@github.com:kscalelabs/sim.git
cd sim
```

2. Install the Isaac Docker image:

```bash
./sim/scripts/install_isaac_dependencies.sh
```

3. Start the Isaac Docker image in Headless mode (assuming you're working in a server environment):

```bash
./sim/scripts/install_isaac_dependencies.sh
# Inside the Docker container
./runheadless.native.sh -v
```
8 changes: 7 additions & 1 deletion sim/scripts/run_headless.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
#!/bin/bash
# Runs Isaac in headless mode.

docker run --name isaac-sim --entrypoint bash -it --gpus all -e "ACCEPT_EULA=Y" --rm --network=host \
docker run \
--name isaac-sim \
--entrypoint bash \
-it \
--gpus all \
-e "ACCEPT_EULA=Y" \
--rm --network=host \
-e "PRIVACY_CONSENT=Y" \
-v ~/docker/isaac-sim/cache/kit:/isaac-sim/kit/cache:rw \
-v ~/docker/isaac-sim/cache/ov:/root/.cache/ov:rw \
Expand Down

0 comments on commit fe2f269

Please sign in to comment.