-
Notifications
You must be signed in to change notification settings - Fork 539
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Multi version install in the nightly container #2858
Comments
@tfeher, you said this was a recent change? As far as I can tell, this is the same behavior in 0.15 and 0.16, but I may be misunderstanding the issue. Output in 0.15:
Output in 0.16:
I'm sure I'm probably missing something here; can you point out what I'm not seeing? Or maybe this was a pre-0.15 change? |
@wphicks thanks for looking into this. I must be wrong while thinking that it was a recent change. I have also checked with older containers and I confirm what you have found: even with 0.14 stable we have the same behavior that I report here. (Also tried checking out branch-0.15 and installing it in 0.15 container, with the same result). So please ignore the "recently" word. Otherwise, the issue remain the same: I expect that after running |
Ah great! Thanks for tracking it back even further. I'll remove the "needs triage" label; this is definitely worth looking into further. |
This issue has been marked rotten due to no recent activity in the past 90d. Please close this issue if no further response or action is needed. Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed. |
The issue still exist in the recent dev containers. |
This issue has been labeled |
Describe the bug
To install cuml in the nightly container, normally I just run
python setup.py install
from the cuml/python folder. Something has changedrecently, and now the same command in nightly image does a multi version install.In practice it means that instead of putting the code under
/opt/conda/envs/rapids/lib/python3.7/site-packages/cuml
, it is installed at something like/opt/conda/envs/rapids/lib/python3.7/site-packages/cuml-0.16.0a0+814.g461cbf2a7.dirty-py3.7-linux-x86_64.egg/cuml
.What is the correct way to install the python wrappers without any version suffix? I can work around by copying the files manually, but I guess there is a better solution than this:
Steps/Code to reproduce bug
Expected behavior
Install the library without version suffix.
The text was updated successfully, but these errors were encountered: