Python Learner
Python Learner

Reputation: 437

How to install JayDeBeApi in python 3.6

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 messageenter image description here

Then I tried to install it using conda install & got this message enter image description here

Can you please suggest me how to install it?

Upvotes: 1

Views: 7055

Answers (1)

A. Nemo
A. Nemo

Reputation: 71

Here's an answer that I think will work on your computer (it works on mine)

  • Go to this github repo
  • Click 'Clone or download' and then 'Download ZIP'
  • Extract the ZIP
  • 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

Related Questions