在 Raspbian 上安装 Meteor
Installing Meteor on Raspbian
我正在 Raspbian 上寻找安装 Meteor 的指南,包括 NodeJS 和 MongoDB。我看过几篇在线文章,但是,它们都是 3-4 岁的。
找到答案并将其张贴在这里以供可能有相同问题的其他人使用。
部分说明来自:
https://github.com/4commerce-technologies-AG/meteor
在 Raspbian:
上为 ARM 处理器安装流星
cd $HOME
git clone --depth 1 https://github.com/4commerce-technologies-AG/meteor.git
$HOME/meteor/meteor --version
创建符号链接
cd /usr/bin
sudo ln -s $HOME/meteor/meteor meteor
测试您的安装
cd $HOME
meteor create hello-world
cd hello-world
meteor
打开浏览器 http://localhost:3000 以查看应用程序是否正常运行。
我正在 Raspbian 上寻找安装 Meteor 的指南,包括 NodeJS 和 MongoDB。我看过几篇在线文章,但是,它们都是 3-4 岁的。
找到答案并将其张贴在这里以供可能有相同问题的其他人使用。
部分说明来自: https://github.com/4commerce-technologies-AG/meteor
在 Raspbian:
上为 ARM 处理器安装流星cd $HOME
git clone --depth 1 https://github.com/4commerce-technologies-AG/meteor.git
$HOME/meteor/meteor --version
创建符号链接
cd /usr/bin
sudo ln -s $HOME/meteor/meteor meteor
测试您的安装
cd $HOME
meteor create hello-world
cd hello-world
meteor
打开浏览器 http://localhost:3000 以查看应用程序是否正常运行。