0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

SO-ARM on MuJoCo

Posted at
# Homebrew(未インストール時)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

# CMake のインストール
brew install cmake

# Git のインストール(未インストール時)
brew install git


# mujocoをcloneする
git clone https://github.com/google-deepmind/mujoco.git
cd mujoco

# ビルド
mkdir build && cd build
cmake -DCMAKE_POLICY_VERSION_MINIMUM=3.5 ..


# コンパイル
cmake --build . -- -j8


# モデルリポジトリをクローン(SO-101 定義を含む)
git clone https://github.com/TheRobotStudio/SO-ARM100.git

# MuJoCo の model フォルダへコピー
cp -r SO-ARM100/Simulation/SO101 ../model/so101_arm

# ビルド
cd ./build

# シミュレーションの実行
./bin/simulate ../model/so101_arm/scene.xml

スクリーンショット 2025-11-07 19.17.07.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?