Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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

like image 883
billysballo Avatar asked Jan 17 '17 11:01

billysballo


1 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://github.com/stdbrouw/python-omniture.git

For more information check its GitHub link

like image 106
afxentios Avatar answered Oct 13 '22 03:10

afxentios