Skip to content

Commit 0df238c

Browse files
Merge branch 'main' of github.com:Al-Borno-Lab/mousearm
2 parents 2a424f8 + c9f188d commit 0df238c

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,32 @@
11
# Demo
22

33
## STEP 1: Create a new Conda environment
4-
In an Anaconda terminal, run `conda create -n "mousearm-test"` or any environment name.
4+
In an Anaconda terminal, run `conda create -n "mousearm-test python=3.11 -y"` or any environment name.
55
Activate the environment with `conda activate mousearm-test`.
66

77
## STEP 2: Install opensim via conda
8-
### Windows
9-
In the Anaconda terminal, run `conda install opensim-org::opensim`.
10-
### Linux
11-
In the Anaconda terminal, run `conda install -c opensim-org opensim`.
8+
**Windows/Linux**: `conda install -c opensim-org opensim`.
9+
**macOS (Apple Silicon)**: `CONDA_SUBDIR=osx-64 conda install -c opensim-org opensim`.
1210

1311
## STEP 3: Clone this git repo and install the library
1412
Run the following in the Anaconda terminal:
1513
```
14+
# Using SSH:
15+
git clone git@github.com:Al-Borno-Lab/mousearm.git
16+
17+
# OR using HTTPS:
1618
git clone https://github.com/Al-Borno-Lab/mousearm.git
19+
1720
cd mousearm
1821
pip install uv
19-
uv pip install .
22+
uv pip install -e .
2023
```
2124

2225
## STEP 4:
2326
In a new anaconda terminal, cd to the parent directory of the cloned repo. Then, run:
2427
```
2528
cd mousearm/mousearm/Demo
26-
python Demo.py
29+
python demo.py
2730
```
2831

2932
# Sample Usage

0 commit comments

Comments
 (0)