you can run: npm install --save core-js/modules/es.regexp.exec core-js/modules/es.string.replace

1. Can't find Python executable "python", you can set the PYTHON env variable.

遇到上面的报错,一般原因是控制台不是以管理员身份运行

2. margin-bottom: #{$--tooltip-arrow-size / 2}; DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.

这种报错一般原因是因为Sass 模块安装有问题

cnpm i [email protected] --save-dev
cnpm i [email protected] --save-dev
cnpm i [email protected] --save-dev
// 安装项目具体版本的sass 重启后可以解决
3. This dependency was not found: * core-js/modules/es.string.replace-all.js in ./src/utils/uuid.js To install it, you can run: npm install --save core-js/modules/es.string.replace-all.js

这个报错是core-js 模块安装有缺,这种按照上面的安装具体版本并不能解决这个问题. 而是需要到 https://www.npmjs.com/package/core-js 点击 Homepage 连接找到github中的资源 https://github.com/zloirock/core-js/tree/master/packages/core-js -->将文件down 下来 packages/core-js 将文件夹下面的所有文件复制到下载的node-modules 对应的 core-js 文件夹下 覆盖

你可能感兴趣的:(you can run: npm install --save core-js/modules/es.regexp.exec core-js/modules/es.string.replace)