It seems that pybrew is almost deprecated. From now on, I will use pythonz. (Memo) I tried inserting picraft with the pip command, but this is Minecraft Pi edition. Since the work memo is wasteful, I changed the title and posted it.
//Prepare CentOS7 environment(--Container is deleted at stop with rm)
$ docker run --rm -i -t centos:centos7 /bin/bash
# useradd mine
# su - mine
//From here is the book
$ python --version
Python 2.7.5
$ curl -O https://bootstrap.pypa.io/get-pip.py
$ python get-pip.py --user
$ pip install picraft --user
Collecting picraft
Installing collected packages: picraft
Successfully installed picraft-0.6
Play Minecraft with Python-Qiita http://qiita.com/wh11e7rue/items/15603e8970c36ab9733d
Before I knew it, installing pip became easier --Qiita
http://qiita.com/who_you_me/items/831d62f396e6d66dda66
https://raw.github.com/pypa/pip/master/contrib/get-pip.py
is old.
Installation — pip 8.2.0.dev0 documentation https://pip.pypa.io/en/latest/installing/
What to do if Insecure Platform Warning appears when running Python --Qiita http://qiita.com/testnin2/items/97ddb749879415b23e18
Recommended Posts