scikit_learn==0.21.0 is not available causing build issue in Google bazel based project
See original GitHub issueSteps/Code to Reproduce
scikit-learn is not available for installation. pip3 install scikit_learn==0.21.0
Description
We are using Google bazel to compile and build artifacts. We have not used this specific library in any of the location. Our system started failing with said dependency and error is could not find a version that satisfies the requirement scikit_learn==0.21.0
Expected Results
installation should go fine without any error.
Actual Results
could not find a version that satisfies the requirement scikit_learn==0.21.0
Versions
N.A. since version is not available.
Issue Analytics
- State:
- Created 4 years ago
- Comments:16 (10 by maintainers)
Top Results From Across the Web
Public Bazel Container launched - Google Groups
The RBE toolchains team recently launched a public Bazel container (Ubuntu 16.04 based) in the Google Cloud Marketplace. The Bazel container ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Actually, we are using bazel with pipfile, somehow it is calculating 0.21.0 as dependencies based on dependencies graph which is not in our control. We do not install anything manually, our system calculates dependencies based on other dependencies, Error:
for me the replacement of sklearn==0.19.1 to scikit-learn==0.19.1 made the trick. Probably the same with another version of scikit-learn. I meet this issue while switching from python 2 to 3