Pip-based rez installation detected warning with installation script #1296
-
Environment: To reproduce : After some research i think i have found something. Maybe i have made something wrong ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The path you need to add and the executables you need to use are the ones in The installer script patches the executables and moves them to the subfolder in order to isolate the rez execution environment from the environments it creates. This is not possible with a pip install, hence the warning. You should not see the warning if you add If you look at the check (https://github.com/nerdvegas/rez/blob/1ecc85f638d11d70ed78d4bd9c5cdc6f32ac58c4/src/rez/cli/_entry_points.py#L52) it checks for the file in the same location as the executable. So if you run the executable from |
Beta Was this translation helpful? Give feedback.
The path you need to add and the executables you need to use are the ones in
\Scripts\rez
. The installer should remove the ones direlctly inScripts
but there is a bug preventing this (see PR #1259).The installer script patches the executables and moves them to the subfolder in order to isolate the rez execution environment from the environments it creates. This is not possible with a pip install, hence the warning. You should not see the warning if you add
Scripts\rez
to%PATH%
.If you look at the check (https://github.com/nerdvegas/rez/blob/1ecc85f638d11d70ed78d4bd9c5cdc6f32ac58c4/src/rez/cli/_entry_points.py#L52) it checks for the file in the same location as the executable. So if you…