barneygale / mark2

minecraft server wrapper, written in python with twisted
Other
105 stars 27 forks source link

Problems running/installing mark2 #126

Open CoryManson opened 10 years ago

CoryManson commented 10 years ago

I can't seem to get this installed right on CentOS, no issues with mark2 on Debian which I've installed several times.

Here's the install log: http://pastebin.com/bvmPcUB2

Here's the error when running config: http://pastebin.com/YaGsG4kt

Any help is appreciated :)

gsand commented 10 years ago

ah, how did you install it? through pip? or did you clone the repo?

CoryManson commented 10 years ago

I cloned the repo via git then ran 'pip install -r requirements.txt'

Pretty much as described in https://github.com/mcdevs/mark2/blob/master/INSTALL.md

gsand commented 10 years ago

Try installing it through pip:

pip install mark2

CoryManson commented 10 years ago

seems to be installed fine.

Install log: http://pastebin.com/7N4pdUyK

Same error when running 'mark2 config'

prophile commented 10 years ago

Can you start a Minecraft server manually (i.e., without mark2)?

u235 commented 10 years ago

I had the same issue. In case others run into this -- the solution in my case was that I had no EDITOR environment variable set and it looks like mark2 requires it to exist (if not set, mark2 tries to call 'editor' which is why we get the no such file error). I just set EDITOR=vim and all was well (i.e. export EDITOR=vim).