You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was curious if you would be interested in/willing to do a small code reorganization that would make kinova_drake easier to include in larger projects: Making it possible to locally install this as a package.
I recently read this tutorial which taught me (among many other things) how to locally install packages with pip install -e .. Is there any interest in reorganizing kinova_drake so that it is pip-installable in this way?
(I would love to one day simply use import kinova_drake in our code without having to worry about copying the entire repository into every project we start.)
The text was updated successfully, but these errors were encountered:
Hm. I just learned that it is also possible to install repositories like this via pip install's native VCS feature. My apologies if this is how you intended to use the repo! That makes more sense! I'm still curious about your response to the above though.
This seems like a good idea: I'm definitely open to a refactoring that enables a quick pip install. I'll look into it. In the meantime, if you have in mind exactly how to do it and want to open a PR feel free to do so!
This allows for a local install using pip install -e ., but I didn't modify the README or anything to provide install details. I'll create a PR; feel free to hack it to shreds.
P.S. After trying to reinstall kinova_drake on a new machine I realized that several dependencies appear to be breaking. I'll create some separate issues/discussions for those.
I was curious if you would be interested in/willing to do a small code reorganization that would make
kinova_drake
easier to include in larger projects: Making it possible to locally install this as a package.I recently read this tutorial which taught me (among many other things) how to locally install packages with
pip install -e .
. Is there any interest in reorganizingkinova_drake
so that it is pip-installable in this way?(I would love to one day simply use
import kinova_drake
in our code without having to worry about copying the entire repository into every project we start.)The text was updated successfully, but these errors were encountered: