I meant to know how to check the current version installed in my system so that I can revert back to it as mentioned in the last statement. However, I found out that I could just do that with pip like this:
>pip show kiteconnect Name: kiteconnect Version: 3.8.1 Summary: The official Python client for the Kite Connect trading API
Also as per the documentation, I understand Python version 3.6.5, which is what I'm using, should be compatible with kiteconnect 3.8.2.
pip install -U pip setuptools
You can use the pip command to install any version of Kiteconnect package. Eg.pip install kiteconnect==3.8.1
pip
like this: Also as per the documentation, I understand Python version 3.6.5, which is what I'm using, should be compatible with kiteconnect 3.8.2.