Wanted to start candymachine-ui yarn doesn't install it's last dependency called @material-ui/icons enter image description here
Asked
Active
Viewed 84 times
1 Answers
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
ORnpm install @material-ui/icons
It should then work:)

Khushhal
- 51
- 8