2021-06-21

阿希配置环境,配置localnet
1、推荐服务器配置
操作系统:Ubuntu 16.06 x64 Node.js 8.x.x
2、安装依赖

更新系统软件:
apt-get update
apt-get upgrade

安装依赖:
apt-get install curl sqlite3 ntp wget git libssl-dev openssl make gcc g++ autoconf automake python build-essential -y
apt-get install libtool libtool-bin -y

安装node.js(已安装的可跳过)
官网推荐的方法一直失败,并不好,用另一个。
curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -
sudo apt-get install -y nodejs
node -v
npm -v


猜你喜欢

转载自blog.csdn.net/weixin_44716147/article/details/118093784