Truffle Error – Truffle Box at URL https://github.com/truffle-box/bare-box.git Doesn’t Exist

errortruffletruffle-box

I'm trying to initialize a directory with truffle init, but I'm getting the following error:

Error: Truffle Box at URL https://github.com/truffle-box/bare-box.git doesn't exist. If you believe this is an error, please contact Truffle support.

The git repository at https://github.com/truffle-box/bare-box.git does exist, so I'm not sure what the problem is. Any help?

Best Answer

I found out on Truffle's Gitter channel that something must have broken in version 4. I upgraded to version 5 and the issue is resolved.

How to upgrade (more information here):

npm uninstall -g truffle
npm install -g truffle
Related Topic