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.
Asked
Active
Viewed 305 times
-1

Robert Bradley
- 548
- 2
- 21

Ganesh Maurya
- 7
- 3
-
1Although 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 Answers
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
-
Thanks for sharing this link. I tried but none of them woked for me. – Ganesh Maurya Jan 06 '22 at 15:35