shankarpandala / lazypredict

Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning
MIT License
2.86k stars 329 forks source link

scipy version #329

Closed hrsht-13 closed 3 years ago

hrsht-13 commented 3 years ago

ERROR: Could not find a version that satisfies the requirement scipy==1.6.0 (from lazypredict) (from versions: 0.8.0, 0.9.0, 0.10.0, 0.10.1, 0.11.0, 0.12.0, 0.12.1, 0.13.0, 0.13.1, 0.13.2, 0.13.3, 0.14.0, 0.14.1, 0.15.0, 0.15.1, 0.16.0, 0.16.1, 0.17.0, 0.17.1, 0.18.0rc2, 0.18.0, 0.18.1, 0.19.0, 0.19.1, 1.0.0b1, 1.0.0rc1, 1.0.0rc2, 1.0.0, 1.0.1, 1.1.0rc1, 1.1.0, 1.2.0rc1, 1.2.0rc2, 1.2.0, 1.2.1, 1.2.2, 1.2.3, 1.3.0rc1, 1.3.0rc2, 1.3.0, 1.3.1, 1.3.2, 1.3.3, 1.4.0rc1, 1.4.0rc2, 1.4.0, 1.4.1, 1.5.0rc1, 1.5.0rc2, 1.5.0, 1.5.1, 1.5.2, 1.5.3, 1.5.4) ERROR: No matching distribution found for scipy==1.6.0 (from lazypredict)

shyamcody commented 3 years ago

@brendalf I am also facing same issue. Can we turn just 1.6.0 to more than equal to 1.6.0?

shankarpandala commented 3 years ago

I am not seeing this issue. I am able to install without any issues. Can you provide the details of the environment etc

shyamcody commented 3 years ago

I faced it when I tried to download in colab. Not sure how to give environment details for colab.

filipre commented 3 years ago

I "fixed" this by using

pip install lazypredict==0.2.7
shyamcody commented 3 years ago

yeah that works! so then clearly the problem is with the latest version

shankarpandala commented 3 years ago

@brendalf Any idea why this is failing?

It worked in my laptop but it failed in colab.

hrsht-13 commented 3 years ago

I "fixed" this by using

pip install lazypredict==0.2.7

@filipre Thank you, it worked.

brendalf commented 3 years ago

Hi everyone, sorry for the late reply.

The error is happening in which specific version? Before v0.2.7?

brendalf commented 3 years ago

I guess we can indeed replace scipy==1.6.0 with scipy>=1.6.0, as you suggested @shyambhu123. My only concern is about compatibility and depreceated functions. Perhaps we should build some coverage tests, what do you guys think?

filipre commented 3 years ago

Can someone explain the error message? Why does the package think that scipy 1.6. is not valid? Where does this list of versions come from? Why does it stop at 1.5.4? I've got similar errors from other packages and never figured out the root cause.

ERROR: Could not find a version that satisfies the requirement scipy==1.6.0 (from lazypredict) (from versions: 0.8.0, 0.9.0, 0.10.0, 0.10.1, 0.11.0, 0.12.0, 0.12.1, 0.13.0, 0.13.1, 0.13.2, 0.13.3, 0.14.0, 0.14.1, 0.15.0, 0.15.1, 0.16.0, 0.16.1, 0.17.0, 0.17.1, 0.18.0rc2, 0.18.0, 0.18.1, 0.19.0, 0.19.1, 1.0.0b1, 1.0.0rc1, 1.0.0rc2, 1.0.0, 1.0.1, 1.1.0rc1, 1.1.0, 1.2.0rc1, 1.2.0rc2, 1.2.0, 1.2.1, 1.2.2, 1.2.3, 1.3.0rc1, 1.3.0rc2, 1.3.0, 1.3.1, 1.3.2, 1.3.3, 1.4.0rc1, 1.4.0rc2, 1.4.0, 1.4.1, 1.5.0rc1, 1.5.0rc2, 1.5.0, 1.5.1, 1.5.2, 1.5.3, 1.5.4)
ERROR: No matching distribution found for scipy==1.6.0 (from lazypredict)
shankarpandala commented 3 years ago

updated scipy to an older version I have verified and is working on colab.

shankarpandala commented 3 years ago

I guess we can indeed replace scipy==1.6.0 with scipy>=1.6.0, as you suggested @shyambhu123. My only concern is about compatibility and depreceated functions. Perhaps we should build some coverage tests, what do you guys think?

Scipy>=1.6.0 also won't work as it is the latest version available now I have downgraded scipy to 1.5.4

shankarpandala commented 3 years ago

@hrsht-13 @shyamcody @filipre Please use the latest version of lazypredict==0.2.9. This issue is fixed

brendalf commented 3 years ago

Excellent, @shankarpandala. About the tests, I'll get done in the weekend, okay?

shankarpandala commented 3 years ago

Sure @brendalf

aeyildirim commented 8 months ago

ModuleNotFoundError Traceback (most recent call last)

get_ipython().system('pip install lazypredict==0.2.9')

ModuleNotFoundError: No module named 'lazypredict'

I get this error about lazypredict. What can I do??