Error: Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime (93)
时间: 2023-09-22 15:14:28 浏览: 109
This error message is usually related to an incompatible version of Node.js or node-sass with your current operating system. To fix this issue, you can try the following solutions:
1. Update Node.js to the latest version: Go to the official Node.js website and download the latest version of Node.js for your operating system. Then install it on your computer and try running your project again.
2. Update node-sass: If you are using an older version of node-sass, try upgrading to the latest version by running the following command in your terminal:
npm install node-sass@latest
3. Use a compatible version of node-sass: If updating Node.js or node-sass does not work, you can try using a specific version of node-sass that is compatible with your operating system. You can find the list of compatible versions on the node-sass GitHub page. To install a specific version, run the following command in your terminal:
npm install node-sass@<version>
Note: Make sure to replace <version> with the specific version number you want to install.
4. Use a different environment: If none of the above solutions work, you can try using a different environment that is compatible with your operating system. For example, you can use a virtual machine or a container to run your project in a different environment.
阅读全文