cnpm i TypeError: randomUUID is not a function
cnpm i
TypeError: randomUUID is not a function
安装报错,是因为最新的淘宝镜像更新了地址。
执行:cnpm -v
返回的信息如下:
cnpm@8.2.0 ()
npm@8.13.2 ()
node@14.15.5 ()
npminstall@6.4.0 ()
由于cnpm的版本过高,需要卸载cnpm再重新装低版本的就可以了。
执行代码如下:
npm uninstall -g cnpm
npm install cnpm@7.1.0 -g
安装成功后再执行 cnpm i 就可以了