I am suffering as I couldn't install cvlib
package in python 3.9
I have searched and found this link https://pypi.org/project/cvlib/#history which is the official link. The latest version is on April 11, 2020 and this seems older than the newer version of python
I tried pip install cvlib==0.2.5
but this doesn't seem to work
How can I deal with such cases ..? I mean how to install those old packages in the newer version of python.
As Alfie has stated, if the package was built for a specific version of Python, then it would be difficult to run unless you can make the changes yourself (if it's open source) and find the deprecated code and amend, or wait for an update from the developer.
With new releases, I always try and test them within a separate environment before introducing them to my root (in case it breaks something else). I use Anaconda and then create environments in there. In these environments you can then determine which version of Python and your packages can/should be used.
Some links that might be helpful:
Managing environments in Anaconda