Traceback (most recent call last): File "setup.py", line 12, in <module> exec(open("fetch/__version__.py").read()) FileNotFoundError: [Errno 2] No such file or directory: 'fetch/__version__.py'
I had to create fetch/__version__.py and put my current python version in it. For example
Traceback (most recent call last): File "setup.py", line 12, in <module> exec(open("fetch/__version__.py").read()) FileNotFoundError: [Errno 2] No such file or directory: 'fetch/__version__.py'
I had to create
fetch/__version__.py
and put my current python version in it. For example__version__ = "3.8.10"
This info should be added to the README.