I have been trying to install this Python module from GitHub using pip, but I keep getting a similar error message.
These are the lines I've used in the command prompt, all returning the same outcome:
1) pip3 install https://github.com/xeb/forex-histdata-etl/tarball/master
Error Message:
Command "python setup.py egg_info" failed with error code 1 in C:\Users\MyUserName\AppData\Local\Temp\pip-hb0mpr2y-build\
2) pip3 install git+https://github.com/xeb/forex-histdata-etl.git
Error Message:
Command "python setup.py egg_info" failed with error code 1 in C:\Users\MyUserName\AppData\Local\Temp\pip-wq0lx76w-build\
This is the first time I encounter this error, I already have a compatible version of git installed. I usually just go for "pip3 install module_name" and that's it, no complications, but this is the first time I do this for a Github file and I'd really like to solve this issue.
I also tried the suggestion from the last commentary of this post, where the user says we need to clone the repository and run a setup.py file of some kind. But can't find something like that in the module I'm trying to download/use.