I got this error mkdir -p dist/ && cp index.html dist/
Hi @k.t.venkatraja ,
Apologies for the late response. I believe the issue may be related to system permissions while npm
is creating the folder and copying a file into it.
To resolve this, you can run the command with sudo
on macOS/Linux or in administrator mode on windows.
Alternatively, you can delete your node_modules
folder and run the following commands:
sudo npm cache clean --force
sudo npm uninstall @tensorflow/tfjs
Please let me know if this workaround works for you. Thank you!