Tailwind CSS 安装不适用于 M1 Mac

Tailwind CSS install does not work on M1 Mac

我无法在 2020 年款 MacBook Pro M1 上安装 Tailwind CSS。 每当我尝试使用

安装它时

npm install tailwindcss@latest

我得到:

npm WARN EBADENGINE Unsupported engine { npm WARN EBADENGINE package: 'amqplib@0.5.2', npm WARN EBADENGINE required: { node: '>=0.8 <=9' }, npm WARN EBADENGINE current: { node: 'v18.0.0', npm: '8.10.0' > } npm WARN EBADENGINE }

up to date, audited 968 packages in 4s

69 packages are looking for funding run npm fund for details

12 vulnerabilities (2 moderate, 7 high, 3 critical)

To address all issues, run: npm audit fix

Run npm audit for details.

我做到了运行

npm audit fix

npm audit fix --force

但是还是不行。 在我看来,Tailwind 还不支持 M1。我还能用吗? 感谢您的帮助。

这只是一个警告,而不是直接的错误。

npm WARN EBADENGINE required: { node: '>=0.8 <=9' }

这看起来包希望您使用 0.8 到 9 之间的节点版本。

npm WARN EBADENGINE current: { node: 'v18.0.0', npm: '8.10.0' > }

虽然这表示您当前使用的是版本 18。 这意味着软件包的某些功能可能无法按预期工作,但应该没问题。