首页 > 编程语言 >解决:npm ERR! [email protected] install: `node install.js`

解决:npm ERR! [email protected] install: `node install.js`

时间:2023-09-23 11:22:18浏览次数:42  
标签:npm node ERR chromedriver install 2.27

https://cdn.npmmirror.com/binaries/chromedriver/2.27/chromedriver_win32.zip
可以点击这个链接直接下载。

删掉项目中的 node_modules 文件夹。

根据自己的下载地址,安装依赖。

npm install chromedriver --chromedriver_filepath=文件地址
注意:不需要解压缩。
npm install chromedriver --chromedriver_filepath=C:\download\chromedriver_win32.zip

 

标签:npm,node,ERR,chromedriver,install,2.27
From: https://www.cnblogs.com/tszr/p/17724040.html

相关文章

  • maven和nodejs环境安装
    1.maven安装  wgethttps://dlcdn.apache.org/maven/maven-3/3.9.4/binaries/apache-maven-3.9.4-bin.tar.gz--no-check-certificate  参考连接:https://blog.csdn.net/yao583224426/article/details/1317396842.Node安装  nodejs官方:http://nodejs.cn/  cd/opt#......
  • npm简介
    1.Npm介绍  NodePackageManager,NodeJS包管理和分发工具  直接安装  npminstallmodule_name//install可简写为i  //使用Npm直接安装模块,默认生产环境,包注册到package.json里dependencies中,会把包安装到项目node_modules文件夹里  -S或--save写dep......
  • element ui 的messageBox中绑定vnode节点
    <template><divclass="about"><h1>Thisisanaboutpage</h1><el-buttontype="primary"size="default"@click="onTest">测试</el-button><div></div&......
  • How to use a shell script to check whether a command had been installed in the L
    HowtouseashellscripttocheckwhetheracommandhadbeeninstalledintheLinuxserverAllInOneerrors❌shellscripterror[::需要整数表达式shellscripterror[:-eq:需要一元表达式shellscripterror[:==:需要一元表达式#!/usr/bin/envbashif[[$(c......
  • Node简介
    什么是nodeJavascript可以在浏览器运行,node可以让javascript在浏览器之外运行可以用来做本地运行的软件/网络服务器/游戏等等记得安装vscode里面力扣插件需要先安装node.js,但我不知道node是做什么的本地还没有安装node,下面开始安装安装node登陆node官网下载......
  • 已解决The following specifications were found to be incompatible with the existi
    已解决Thefollowingspecificationswerefoundtobeincompatiblewiththeexistingpythoninstallation文章目录报错问题解决方法PS报错问题之前在工作中遇到过这个坑,记录一下问题以及解决方法,不一定针对所有情况都能用,但是可以供大家参考。问题描述如下:UnsatisfiableErr......
  • Swagger生产nodejs后台代码(nestia框架)
    Swagger文档生产nestia框架代码#SETUPGLOBALLYnpminstall-g@nestia/migrate#DOMIGRATEnpx@nestia/migrateswagger.jsonoutput_directoryNPM是一个Node包管理器,NPX是一个Node包执行器。npm查看全局安装的包npmls-g......
  • Windows 下更新 node.js
    一、node.js更新(一)查询node.js版本node-v(二)查询node.js安装位置wherenode(三)官网下载安装包https://nodejs.org/dist/下载对应版本的msi文件(四)安装到原位置,覆盖旧版本如:D:\ProgramFiles\nodejs\二、npm更新(一)查看版本npm-v(二)更新版本npmup......
  • 浅谈Node之express框架
    浅谈Node之express框架爱吃番茄的肥仔互联网数据开发一枚​关注他 4人赞同了该文章前言今天终于到了重点话题了,开始学习express框架,在学习之前我们需要了解express的作用和背景。express是一个web框架,功能和http模块类似,只不过功能更加强大,开发效......
  • Node组件——Express简介
    Node组件——Express简介隐逸王关注IP属地:陕西0.1082020.06.0113:36:03字数1,984阅读5,552概述Express是目前最流行的基于Node.js的Web开发框架,可以快速地搭建一个完整功能的网站。Express上手非常简单,首先新建一个项目目录,假定叫做hello-world。$mkdirhello-......