2

I have tried using the install instructions included with minecraft pi for linux, but it is not working on lubuntu. plus I tried ubuntu and clicked on the tar.gz file to auto install it like I heard ubuntu can do, but no luck. ubuntu said that there was nothing to install. I need help. I really want to try minecraft pi. I would like step by step instructions or a walkthrough please.

Ronald Browen
  • 21
  • 1
  • 1
  • 6

4 Answers4

4

As pointed out in some of the comments, the reason it wont run on Ubuntu, or Lubuntu, is that Minecraft Pi is specifically compiled to run on the Raspberry Pi hardware.

It's not a a slightly customized version of the regular, Java based Minecraft, which will run on most platforms where java is available. Rather, it is an an executable program that has been hard-wired for the Raspberry Pi' which has, generally speaking, fewer resources than a regular desktop PC, and also a somewhat different internal operating system structure.

There is really no simple workaround for this. Minecraft-Pi was developed to meet a particular need, which it does awesomely, IMHO. It's just not a general purpose Minecraft client or server.

If you want to achieve the same outcome, namely using Python to create and interact with your Minecraft world, you certainly can, it's just a little bit more work than running mcpi on the Raspberry Pi. A great place to start is this Instructable.

John T
  • 425
1

You can't install an archive directly. Follow the steps below.

  1. Download the archive (skip if already done)

    cd
    wget https://s3.amazonaws.com/assets.minecraft.net/pi/minecraft-pi-0.1.1.tar.gz
    
  2. Extract the archive (skip if already done)

    tar xf minecraft-pi-0.1.1.tar.gz
    
  3. Change the folder

    cd mcpi
    
  4. Start

    ./minecraft-pi
    

    tar xf your_filename

All described in the file mcpi/HOW_TO_RUN.txt

A.B.
  • 90,397
0

Minecraft Pi is supposed to run on Raspbian (now Raspberry Pi OS) which is a customized Debian-based system so you cannot run in in Ubuntu. Even though Ubuntu is based on Debian, Raspbian is a tweaked version of Debian so it cannot execute, however you can experience Minecraft in classic.minecraft.net. classic.minecraft.net is not a full version of Minecraft. It is the classic Minecraft.

karel
  • 114,770
  • The problem isn't the distro, it's the architecture. Even on arm64 RasPiOS it doesn't run, simply because it's compiled for the armhf architecture. – Lampe2020 Dec 28 '23 at 23:21
0

Pi Edition is built for ARM based architecture, if you would like to run this on any x86 system you will probably need to virtualize.

Kevin Bowen
  • 19,615
  • 55
  • 79
  • 83