-
When rye is managing python it will make "pip install" to install to a path (~/.rye/tools/pip/bin) which is not added to the PATH when installing rye. Am I supposed to manually add that path to the PATH environment variable? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
@jbulow with rye, it's not intended to install pip like that, I can see how that becomes very confusing. If you want to install executable scripts (apps) like for example hatch or ruff, then you'd want to use Note that |
Beta Was this translation helpful? Give feedback.
Is it possible that the tool you have installed does not have any executable scripts? If I do "rye tools install jinja2" it fits with your description - the library is listed in the list, and there are no executables. Also look at rye tools install --include-dep if that's needed, if the exectuable is from a dependency.