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
Because Scoop doesn't strictly support multiple versions of a single package, packages like python27 end up as a Rez package of the same name, when it should end up as python-2.7.16.
A simple and perhaps naive approach would be to look at the ["version"] string in the Scoop manifest, use that, and strip any numbers following the package name.
Another approach is give control to the user to e.g.
$ install python27 --name python
However that would does not take into account the many packages that may be installed as a dependency of python27.
The text was updated successfully, but these errors were encountered:
What happens currently is that the tailing digits are assumed to be a version, and are stripped. E.g. python27 becomes python, whereby the actual version is coming from the bucket definition, which contains an appropriate 2.7.16.
Because Scoop doesn't strictly support multiple versions of a single package, packages like
python27
end up as a Rez package of the same name, when it should end up aspython-2.7.16
.A simple and perhaps naive approach would be to look at the
["version"]
string in the Scoop manifest, use that, and strip any numbers following the package name.Another approach is give control to the user to e.g.
However that would does not take into account the many packages that may be installed as a dependency of
python27
.The text was updated successfully, but these errors were encountered: