When I try to install omniture using pip I receive the following error:

IOError: [Errno 2] No such file or directory: 'README.md' 

I am basically trying to connect to the Adobe Analytics API. Can someone help me?

Thanks

2

2 Answers

omniture module on PyPi is missing the README.md file, hence the IOError you get.

If you want to install this module, install it through its github repo as below:

pip install git+git:// 

For more information check its GitHub link

3

I had this problem once with a README.adoc, and I solved it by adding README.adoc to the MANIFEST.in file and republishing my package.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy