0
I started learning how to build a blockchain from Antonopoulos book using Git Bash and i have a problem. I used commands: git clone github.com/bitcoin/bitcoin.git cd bitcoin git tag git checkout v0.11.2 and when i try to use command ./autogen.sh on the screen appear information: ./autogen.sh: line 9: autoreconf: command not found.
Where is the problem? What i do wrong? i need some libraries?

But i have to install ubuntu? cannot do on windows? – Norbert – 2019-07-28T22:00:55.670
Sorry Norbert, I didn't pay attention to the picture with Windows. Actually you are executing Linux tools, but these tools came with MinGW. In this case you are using the MinGW provided by Git that don't have autoconf. Try to download and install a new copy of MinGW and chose the packages that you need. Then you can open the new MinGW and try to compile again. If you still have problems, an alternative to MinGW is Cygwin. – Clopes – 2019-07-29T17:47:21.297