Reputation: 437
I'm running python 3.6 in my windows 10. I need to install JayDeBeApi.I tried to install in with pip install statement first & got the following error message
Then I tried to install it using conda install & got this message
Can you please suggest me how to install it?
Upvotes: 1
Views: 7055
Reputation: 71
Here's an answer that I think will work on your computer (it works on mine)
In your terminal:
cd YourDownloadPath/ExtractedFolder/jaydebeapi-master
python setup.py install
It should install properly.
NOTE: I use python 3.4.3 and Windows Vista so it may not work.
Upvotes: 4