-1

Wanted to start candymachine-ui yarn doesn't install it's last dependency called @material-ui/icons enter image description here

NFTtray
  • 75
  • 10

1 Answers1

1

Most probably, it's the problem with your Yarn version. Try these steps:-

  • run npm uninstall yarn
  • Delete all the node_modules folders in the candymachine_ui directory.
  • run npm install -g yarn
  • run yarn install in the dir

If none of them works, run one of these commands:-

  • yarn add @material-ui/icons OR npm install @material-ui/icons

It should then work:)

Khushhal
  • 51
  • 8