树莓派-raspbain系统安装nodejs正确方式 2021-01-30 程序之旅,记录 暂无评论 747 次阅读 ## 树莓派-raspbain系统安装nodejs正确方式 [TOC] 主要描述树莓派 3B 安装 node.js 的开发环境,避免使用过程中 npm 安装全局模块无法使用的坑 ### 环境描述 - 树莓派 3B - 2020-02-13-raspbian-buster-lite - node v15.7.0 ### 目标 安装最新 arm 版本的nodejs,并能正常使用 ### 安装过程 下载编译好的 node.js 版本,这里安装最新(2021年1月30日)的版本,可以使用浏览器查看目前最新的版本,[地址](https://nodejs.org/dist/) ```shell $ pwd /home/pi $ wget https://nodejs.org/dist/v15.7.0/node-v15.7.0-linux-armv7l.tar.gz $ tar xzf node-v15.7.0-linux-armv7l.tar.gz $ mv node-v15.7.0-linux-armv7l /usr/local/node ``` 配置 node.js 环境变量 ```shell $ vim /etc/profile export NODE_HOME=/usr/local/node export PATH=$PATH:$NODE_HOME/bin export NODE_PATH=$NODE_HOME/lib/node_modules $ echo "source /etc/profile" >> ~/.bashrc $ source ~/.bashrc ``` ### 验证使用 ```shell $ node -v v15.7.0 $ npm -v 7.4.3 ``` --- ### 2021年9月2日 ubuntu 安裝 nodejs ```shell $ curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash - $ sudo apt-get install -y nodejs ``` 顺带一提,如果你要安装16.x.x 的版本,只需要修改添加源地址中的数字即可,比如: ``` $ curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash - ``` --- ### 2021年9月16日 #### Centos 安装 nodejs 官网下载包 ![image-20210916163201536](https://mufeng-blog.oss-cn-beijing.aliyuncs.com/typecho/image-20210916163201536.png) 或者直接服务器获取地址使用 wget 下载 ```shell $ wget https://nodejs.org/dist/v14.17.6/node-v14.17.6-linux-x64.tar.xz $ tar -xvf node-v14.17.6-linux-x64.tar.xz $ mv node-v14.17.6-linux-x64 /usr/local/ $ cd /usr/local/ $ mv node-v14.17.6-linux-x64/ nodejs ``` 配置环境 ```shell $ vim /etc/profile export PATH=$PATH:/usr/local/nodejs/bin $ source /etc/profile $ node -v v14.17.6 $ npm -v 6.14.15 ``` 打赏: 微信, 支付宝 标签: 树莓派, node.js, raspbain 本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。