File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed
Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change 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.
55Activate 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
1412Run 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:
1618git clone https://github.com/Al-Borno-Lab/mousearm.git
19+
1720cd mousearm
1821pip install uv
19- uv pip install .
22+ uv pip install -e .
2023```
2124
2225## STEP 4:
2326In a new anaconda terminal, cd to the parent directory of the cloned repo. Then, run:
2427```
2528cd mousearm/mousearm/Demo
26- python Demo .py
29+ python demo .py
2730```
2831
2932# Sample Usage
You can’t perform that action at this time.
0 commit comments