8

I am trying to install https://github.com/ExaVault/evapi-python.git using pip, but it doesn't have a setup.py so how am I supposed to use it? I want to use the packages it contains, but with no setup.py how am I supposed to use it?

1
  • Why do not you create a setup.py? Commented Jul 14, 2017 at 21:50

2 Answers 2

8

Just an unfinished, broken package, it isn't supposed to be installed by Python tools. Install it manually — clone the repo and copy files to site-packages.

And send them a bug report. Or better yet a pull-request.

Upd. Oh, I see, you've sent a bug report alredy, nice!

Sign up to request clarification or add additional context in comments.

1 Comment

After reading many posts and getting even more confused, this simple answer did the job. I wish I could give you 100 upvotes instead of 1. Thank you very much.
2

Installing it looks like a manual job, but you can still use it. Download it as zip here https://github.com/ExaVault/evapi-python/archive/master.zip, extract, go to evapi-python-master folder, go to src, and simply place your code there.

import V1Api
import ApiClient

...

2 Comments

Awesome, you are my hero. Can you elaborate? What do you mean by place your code there?
Create a file in src and call it something mycode.py, then place above code in it.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.