I’m trying to install the python package found in this website: https://pypi.org/project/sifreader/.
But when I use pip install, I get this message:
[7 lines of output]
Traceback (most recent call last):
File “”, line 2, in
File “”, line 34, in
File “C:UsersJoseAppDataLocalTemppip-install-tqi13wlnsifreader_34236a7cd03c4b18a89f9576d7ca2db7setup.py”, line 13, in
long_description = open(‘readme.md’).read(),
^^^^^^^^^^^^^^^^^
FileNotFoundError: [Errno 2] No such file or directory: ‘readme.md’
[end of output]
And indee, looking at the tar file, there’s no readme.md file, but at the same time this line is commented on the setup.py file, so what coulld I do in this situation?
I tried deleting the line which is causing trouble, but then Anaconda tells me that it can’t compile it.