forked from gianluigigrandesso/cacto
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
babb3e1
commit 74bf8e8
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
installation instructions: | ||
|
||
1. Download and install Python 3.10.12 | ||
2. Download and install venv and create new environment for cacto. DO NOT use conda to avoid issues with pip | ||
3. execute the following commands: | ||
|
||
python3 -m pip install --upgrade pip | ||
python3 -m pip install tensorflow==2.11 | ||
git clone https://github.com/nmansard/jnrh2023 | ||
cd jnrh2023 | ||
python3 -m pip install example-robot-data-jnrh2023 jupyterlab meshcat scipy ipywidgets matplotlib | ||
python3 -m pip install tf_siren | ||
python3 -m pip install mpmath | ||
python3 -m pip install matplotlib==3.5.1 | ||
|
||
4. Run a test to verify installation: | ||
python3 main.py --system-id='single_integrator' --seed=0 --nb-cpus=15 --w-S=1e-2 --test-n=0 | ||
System: single_integrator - N_try = 0 | ||
|
||
|
||
for GPU to work here's what I did: | ||
https://www.tensorflow.org/install/pip | ||
pip uninstall tensorflow | ||
pip install tensorflow[and-cuda] | ||
|
||
|
||
|