I am uanble to install kiteconnect on my Windows 10 Machine with 64 bit. I have installed Python 3.7.0.
When I try to instlall kiteconnect, with the below command
pip install kiteconnect
I am getting below error
Traceback (most recent call last): File "", line 1, in File "E:\Temp\pip-install-w1x67t8j\pypiwin32\setup.py", line 121 print "Building pywin32", pywin32_version ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print("Building pywin32", pywin32_version)?
---------------------------------------- Command "python setup.py egg_info" failed with error code 1 in E:\Temp\pip-install-w1x67t8j\pypiwin32\
hi Imran, I have tried all the solutions mentiond on tha above thread none worked for me. Tired all Twisted packages.. got error like
"C:\WINDOWS\system32>pip install C:\Users\kishpre\Downloads\Twisted-18.7.0-cp37-cp37m-win_amd64.whl Twisted-18.7.0-cp37-cp37m-win_amd64.whl is not a supported wheel on this platform."
Can you externally install pywin32 package by
pip install pywin32
and thenpip install kiteconnect --upgrade
Done as you said, installed pywin32, it got installed succesfully. But kiteconnect did not isntall. Got te same error as above.
go through this thread https://kite.trade/forum/discussion/4384/client-installation-issue#latest
"C:\WINDOWS\system32>pip install C:\Users\kishpre\Downloads\Twisted-18.7.0-cp37-cp37m-win_amd64.whl
Twisted-18.7.0-cp37-cp37m-win_amd64.whl is not a supported wheel on this platform."
You are trying to install .whl file for python 3.7
From the above thread
Can you uninstall the existing kiteconnect?
`pip uninstall kiteconnect`
`pip install kiteconnect --no-cache`
If not working, try this
Assuming PC is 64bit and python 3.6, download
https://github.com/zerodhatech/python-wheels/blob/master/Twisted-17.9.0-cp36-cp36m-win_amd64.whl
pip install path_to_download_twisted. Then try again
1.Confirm it you are using python 3.6
2. Use this link https://github.com/zerodhatech/python-wheels/blob/master/Twisted-17.9.0-cp36-cp36m-win_amd64.whl
Update if any further problem
I have uninstalled Python 3.7 and installed 3.6. After that kiteconnect got installed. Thak you so much for your help.
Thank you.