NodeJS 未安装滑动器

zfycwa2u  于 2023-03-08  发布在  Node.js
关注(0)|答案(1)|浏览(159)

我正在尝试安装npm i swiper@5.3.0,但收到错误522。我使用的是npm版本6.5.0

npm ERR! path C:\Users\<user>\demo-swiper\node_modules\swiper
npm ERR! command failed
npm ERR! command C:\Windows\system32\cmd.exe /d /s /c C:\Users\<user>\AppData\Local\Temp\postinstall-537039b0.cmd
npm ERR! "Love Swiper? Support Vladimir's work by donating or pledging on patreon:
npm ERR! The syntax of the command is incorrect.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\<user>\AppData\Local\npm-cache\_logs\2023-03-03T12_23_23_845Z-debug-0.log```

As I am using it other project which needed npm v6.5.0, I thought maybe project had issue but when I installed in stand alone. it does not work.
j8ag8udp

j8ag8udp1#

由于某些原因,swiper@5.3.0无法与npm版本6.5.0一起工作。解决方案是安装Node版本管理器。运行后,您希望通过运行以下命令检查您在npm上使用的版本

nvm -v

如果您使用的是6.5.0,那么您需要更高的版本,通过运行以下命令来检查哪些版本可用

nvm list

然后使用nvm use <version>,这将切换到该号码。
现在安装swiper@5.3.0,一旦完成,然后切换回npm上的旧版本。

相关问题