大家好,又见面了,我是你们的朋友全栈君。
node重装系统后环境变量配置:
node安装后,默认会自动配置环境变量,但是如果有时重装系统后,系统环境变量被重置,这时就需要重新手动配置环境变量。
配置环境变量首先添加一个node的path,NODT_PATH 值配置为node文件夹中的node_modules的位置,如 D:nodeJsnode_modules
,然后在path中加入node安装文件夹的路径即可 如 D:nodeJs
。
npm重装系统后环境配置:
npm在出现如上系统重置问题,在工具中无法识别,可以在项目所在文件夹中删掉之前下载的node_modules文件夹,然后在该文件夹中空白处 shift 鼠标右击 – 选择在此处打开power shell窗口,然后重新下载npm即可,下载命令 npm install
,重新下载后,需要关闭打开的工程,重新打开即可正常使用npm命令。
如果出现ERROR: Can't find Python executable "
python
", you can set the PYTHON env variable.
是因为没有python环境,可以执行npm install --global --production windows-build-tools
进行安装配置。
如果提示如下错误,是缺少Python环境,需要安装Python,但安装时有时会出现无权限,可以关闭vscode,然后右击vscode使用管理员权限打开,然后再重新运行上面的安装命令进行安装即可。
gyp verb find Python - "py.exe" is not in PATH or produced an error
gyp ERR! find Python
gyp ERR! find Python Python is not set from command line or npm configuration
gyp ERR! stack Error: Could not find any Python installation to use
下载出现node-sass@4.9.0 postinstall: node scripts/build.js
错误,是之前有安装的旧版本,需要卸载之前安装,重新进行安装,
卸载命令:npm uninstall node-sass
重新安装制定版本:npm install node-sass@4.9.0
这里也可以不指定版本直接下载安装,根据自己本地环境自行选择版本。
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/179215.html原文链接:https://javaforall.cn