1

I ma trying to install https://pypi.python.org/pypi/python-epo-ops-client I tried installing it from pip from both latest version.

python 2.7.12 and python 3.5.2

for both of the version it says

C:\Users\me>pip install python-epo-ops-client 2.1.0
Collecting python-epo-ops-client
  Using cached python_epo_ops_client-2.1.0-py2.py3-none-any.whl
Collecting 2.1.0
  Could not find a version that satisfies the requirement 2.1.0 (from versions:
)
No matching distribution found for 2.1.0

As I am completely new to python, question is:

1) Do I need to install all python version to see which version above module is compatible with? Or

2) can I know which version of python will be compatible with above version?

I want to install python for above package only. please suggest.

6
  • What is the full output of the command you used to try and install this? Commented Jul 14, 2016 at 8:34
  • Ok. Let me run it again and get back. Commented Jul 14, 2016 at 8:37
  • @MartijnPieters: Please check the updated question. Commented Jul 14, 2016 at 8:38
  • @MartijnPieters, ravi: I don't know why but when I dropped the version number it did installed fine. pip install python-epo-ops-client for both version of pip Commented Jul 14, 2016 at 8:45
  • that's because ravi is actually correct; you didn't use the right syntax. You tried to install a package named 2.1.0 because you should have used ==2.1.0 to pin the version. Commented Jul 14, 2016 at 8:47

1 Answer 1

4

You are having space between python-epo-ops-client & 2.1.0, so it is trying to install two packages.

(1) python-epo-ops-client and (2) 2.1.0, but there isn't any package named "2.1.0"

To install specific version you need to mention ==.

pip install python-epo-ops-client==2.1.0
Sign up to request clarification or add additional context in comments.

1 Comment

Thanks man. I figured out but this has given me right information.

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.