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
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
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
sudo pip install git+git://github.com/stdbrouw/python-omniture.git
. In Windows execute it as Admin. –
Loveinidleness 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.
© 2022 - 2024 — McMap. All rights reserved.