当我和树莓派一起工作的时候,我是个十足的傻瓜。
到目前为止我采取的步骤:
完成了最新稳定版本的树莓杰西对树莓皮2清洁安装。
https://github.com/screeps/screeps下载并解压缩包含Screeps服务器文件的文件夹
试图运行服务器文件提供的“自述”文件中给出的第一个命令

npm install screeps

死亡。
据我所知,在尝试安装Screeps服务器之前,我需要安装新版本的npm和nodejs,但我对如何执行这两项任务都没有背景知识。

最佳答案

你安装了npm吗?如果没有,则需要先运行几个命令。(免责声明我要列出的命令是为Ubuntu 16.04的,可能在Raspbian上工作,也可能不工作。一个简单的谷歌搜索会给你一个类似于拉斯宾语的搜索结果,但我会把这项研究留给你去做。)
“35;”是注释,不应键入命令行。

sudo apt-get update       #will update your machine
sudo apt-get upgrade      #will upgrade your machine
sudo apt-get install npm  #will install npm on your machine
sudo npm install screeps  #will use npm to install screeps
screeps init              #should be preformed in the directory you want to run screeps in and the current user has read/write/execute privileges
screeps start             # will start your screeps server

最后一个命令可以用
screeps start --host x.x.x.x“x”表示覆盆子pi的ip,以便它知道将在哪里接收请求

关于node.js - 如何在Raspberry Pi 2的全新安装的Raspbian Jessie上启动独立的Screeps服务器?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45080634/

10-13 07:11