We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running npm i on a fresh install, npm return an error when install node-sass.
npm i
node-sass
node-sass is deprecated and should be replaced by sass.
sass
The following issue occurs>
npm ERR! ModuleNotFoundError: No module named 'distutils' npm ERR! gyp ERR! configure error npm ERR! gyp ERR! stack Error: `gyp` failed with exit code: 1 npm ERR! gyp ERR! stack at ChildProcess.onCpExit (/Users/sbarbier/dev/git/seven23/node_modules/node-gyp/lib/configure.js:259:16) npm ERR! gyp ERR! stack at ChildProcess.emit (node:events:518:28)
To temporarily avoid that issue, a solution consist in creating a python virtual env in the project and install setuptools locally:
python3 -m venv apps source apps/bin/activate python3 -m pip install setuptools
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When running
npm i
on a fresh install, npm return an error when installnode-sass
.node-sass
is deprecated and should be replaced bysass
.The following issue occurs>
To temporarily avoid that issue, a solution consist in creating a python virtual env in the project and install setuptools locally:
The text was updated successfully, but these errors were encountered: