-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
minor fixes to documentation and editable installation #111
Conversation
@@ -38,7 +38,7 @@ It is possible to install MyoSuite with: | |||
``` bash | |||
pip install -U myosuite | |||
``` | |||
for advanced installation, see [here](setup/README.md). | |||
for advanced installation, see [here](https://myosuite.readthedocs.io/en/latest/install.html#alternative-installing-from-source). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
from here -- https://myosuite.readthedocs.io/en/latest/install.html#alternative-installing-from-source
pip install -e -r requirements
==>pip install -e .
- Remove the options
export PYTHONPATH="<path/to/myosuite>:$PYTHONPATH"
. This pollutes the whole path for all the envs and is a recipe for complications.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Vittorio-Caggiano -- what about this?
docs/source/publications.rst
Outdated
|
||
* Vittorio Caggiano, Sudeep Dasari, Vikash Kumar, `MyoDex: A Generalizable Prior for Dexterous Manipulation`, *International Conference on Machine Learning (ICML)*, 2023 | ||
* Vittorio Caggiano, Sudeep Dasari, Vikash Kumar, `MyoDex: A Generalizable Prior for Dexterous Manipulation <https://arxiv.org/abs/2309.03130>`_, *International Conference on Machine Learning (ICML)*, 2023 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Better to add the webpage link
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added web links
docs/source/publications.rst
Outdated
|
||
* Cameron Berg, Vittorio Caggiano*, Vikash Kumar*, `SAR: Generalization of Physiological Dexterity via Synergistic Action Representation', *Robotics: Science and Systems (RSS)*, 2023 | ||
* Cameron Berg, Vittorio Caggiano*, Vikash Kumar*, `SAR: Generalization of Physiological Dexterity via Synergistic Action Representation <https://arxiv.org/abs/2307.03716>`_, *Robotics: Science and Systems (RSS)*, 2023 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Better to add the webpage link
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added web links
docs/source/install.rst
Outdated
.. code-block:: bash | ||
|
||
export PYTHONPATH="<path/to/myosuite>:$PYTHONPATH" | ||
pip install -e -r . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
double-check this. I believe -r option is when you are specifying a file for requirements.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed in the last commit
No description provided.