packages_path not searched during rez-release #1428
-
tl;drWhen performing a
...because DetailsWe have multi-user machines so I install to SET "REZ_LOCAL_PACKAGES_PATH=C:\ProgramData\Rez\packages"
C:\opt\rez\Scripts\rez\rez.exe bind --quickstart So the My config file looks like this: {
"cache_packages_path": "C:\\ProgramData\\Rez\\cache",
"local_packages_path": "C:\\ProgramData\\Rez\\packages",
"default_cachable_per_package": {
"houdini": True,
"nuke": True,
"redshift": True,
"sidefx_labs": True,
},
"packages_path": [
"C:\\ProgramData\\Rez\\packages",
"Z:\\packages",
],
"release_packages_path": "Z:\\packages",
} But if I perform a So I'm either under a misunderstanding of how rez works when it comes to implicit packages, or I misunderstand how to configure rez to releases packages. Some insight would be much appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
"rez-release" tool ignore packages installed in the local folder "local_packages_path" to avoid that a package installed in packages_path (usually a shared folder on the network) requires a package that is only local. What's stopping you from having the 'platform' package on volume Z: ? If you have different OS or version of OS, you can use "platform_map" to manage that (cf:https://github.com/AcademySoftwareFoundation/rez/blob/master/src/rez/rezconfig.py#L303) |
Beta Was this translation helpful? Give feedback.
Hi @Anti-Distinctlyminty,
"rez-release" tool ignore packages installed in the local folder "local_packages_path" to avoid that a package installed in packages_path (usually a shared folder on the network) requires a package that is only local.
What's stopping you from having the 'platform' package on volume Z: ?
If you have different OS or version of OS, you can use "platform_map" to manage that (cf:https://github.com/AcademySoftwareFoundation/rez/blob/master/src/rez/rezconfig.py#L303)