-1

I am trying to install Parcel Webpack, but there are some warnings in this installation. I also checked by deleting the node_modules folder but got the same warning every time.

Screenshot 1

Screenshot 2

Robert Bradley
  • 548
  • 2
  • 21
  • 1
    Although it's of course very easy to give instructions on how to solve "some warnings", how about including them in your question? – James Z Dec 30 '21 at 20:33
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Jan 09 '22 at 09:37

1 Answers1

0

The command you are attempting to run uses Python 2 syntax. It is incompatible with Python 3 and when you want to install the package, node-gyp is executed with python3 and this error happened.

This question explain how to change the python version for install package

Pooya
  • 2,968
  • 2
  • 12
  • 18