Nodejs
文章平均质量分 57
瘦身小蚂蚁
这个作者很懒,什么都没留下…
展开
-
安装 yarn (Windows)
安装 yarn原创 2022-06-03 07:00:00 · 1440 阅读 · 0 评论 -
Hardhat安装与相关插件报错记录
1、安装hardhat报错操作系统:Windows10与linux安装harhat时报错,查看相应解决方案,但当时未成功(持续3小时,当时太晚了就放弃了),试过上安装,都报错,不能正常执行安装命令;科学上网也试了,未成功。但是第二天再试,突然就好了,没有出现任何错误,不知道是否与使用时间有关。当晚安装hardhat报错如下:F:\hardhatdemo>npm install --save-dev hardhatnpm ERR! code 1npm ERR! path F:\Go原创 2022-04-26 10:25:47 · 2068 阅读 · 0 评论 -
安装 truffle (CentOS7 与 Windows)
提前条件安装Nodejs 可参考:Centos7 安装 Nodejs_ling1998的博客-CSDN博客CentOS7安装1、设置镜像npm config set registry https://registry.npm.taobao.org2、安装注:加上版本号,否则一直报错npm install -g truffle@5.1.13不带版本号,一直卡在下面的位置不动[root@localhost truffle]# npm install -g truff..原创 2022-04-13 13:08:59 · 1906 阅读 · 4 评论 -
CentOS7 npm 安装完执行命令出现 bash: xxx: command not found...
以安装完truffle为例,其它出现相同错误一样的解决方案。1、安装truffle[root@localhost local]# npm install -g truffle@5.1.132、验证[root@localhost local]# trufflebash: truffle: command not found...出现错误信息:bash: truffle: command not found...3、查找原因(1)查看执行truffle链接的执行脚本文件.原创 2022-04-13 12:56:17 · 2058 阅读 · 3 评论 -
安装 Nodejs (CentOS7 与 Windows)
1. 下载Nodejs[root@localhost local]# wget https://nodejs.org/dist/v14.18.1/node-v14.18.1-linux-x64.tar.xz 当前最新版本为14.18.1 ,下载地址Download | Node.js 若提示~bash: wget: commond not found,则安装wget[root@localhost local]# yum install -y wget2. 解压压缩包...原创 2021-11-07 18:17:00 · 1306 阅读 · 0 评论