简体   繁体   中英

Problem with fsevents dependency while trying to install tailwindcss on linux

I'm trying to install tailwindcss in my Vue Js project using the following command:

 npm install -D tailwindcss@latest

But I get this error:

npm ERR! code EBADPLATFORM
npm ERR! notsup Unsupported platform for fsevents@2.3.2: wanted {"os":"darwin"} (current: {"os":"linux","arch":"x64"})
npm ERR! notsup Valid OS:    darwin
npm ERR! notsup Valid Arch:  undefined
npm ERR! notsup Actual OS:   linux
npm ERR! notsup Actual Arch: x64

There is a related topic here where the proposed solution is to set fsevents as devDependencies but it is not possible in this particular case.

npm install -D -f tailwindcss@latest this forced the installation

I had the same problem while installing tailwind in my reactjs application. I could resolve the error by npm install -D -f tailwindcss@latest .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM