Minecraft on the Raspberry Pi

In this guide, we will be showing you how to install and run Minecraft on your Raspberry Pi.

Raspberry Pi Minecraft

You will be installing a special version of Minecraft that has been built just for the Raspberry Pi. This version of Minecraft is called “Minecraft Pi Edition“.

This version is much older than the current release of Minecraft.  However, it has one advantage, and that is that it’s completely free. Also, this version of Minecraft also comes with a Python library that allows you to interact with the game world.

There are a few things you should know about this version of Minecraft that was built just for the Raspberry Pi.

  1. It uses the old game world format, meaning the world has a maximum size of 256 x 256 x 128 blocks.
  2. The game mode is creative only, so there is no crafting in this version of Minecraft
  3. There are no mobs in this version

Despite these drawbacks, this is still an interesting version of Minecraft to try out on your Raspberry Pi. It is also a great way to explore programming by interacting with the game world using Python.

If you want to run a server for your retail version of Minecraft, then be sure to check out our Minecraft server guide.

Equipment List

Here is a list of the equipment we recommend for this tutorial on installing Minecraft on your Raspberry Pi.

Recommended

Optional

Installing Minecraft for your Raspberry Pi

In this section, we will show you how to install the Minecraft Pi Edition to your Raspberry Pi.

1. Luckily for us, Minecraft Pi Edition has been made available in the Raspbian package repository.

The first thing we need to do is update and upgrade all existing packages by running the command below.

sudo apt update
sudo apt upgrade

2. Once the packages have been updated, we can now proceed with this guide.

Run the following command to install Minecraft Pi Edition to your Raspberry Pi.

sudo apt install minecraft-pi

This command will install both Minecraft and the Python libraries needed to interact with it.

Running Minecraft on your Raspberry Pi

Running Minecraft Pi Edition on your Raspberry Pi is a simple process.

1. To launch Minecraft, you need to click the Raspberry Pi icon in the top left-hand corner.

Open Pi Start Menu

2. Next, you need to hover over the “Games” sub-menu, then clickMinecraft Pi“.

Launch Minecraft Pi Edition

3. You should now have Minecraft Pi Edition loaded up on your Raspberry Pi.

To start a game, all you need to do is click the “Start Game” button.

Start a new Minecraft Game

4. Within the next menu, you need to create your first world by clicking the “Create new” button.

Create a new Minecraft World on your Raspberry Pi

5. Once the world has finished generating, you spawn immediately into it.

Within the Minecraft World

In the next section, we will show how you can use Python to manipulate the game world.

Interacting with Minecraft through Python

One of the coolest features of Minecraft Pi Edition is the API that it has built-in.

In this section, we will be showing you how you can use Python to interact with Minecraft Pi Edition.

If you would like to get a better understanding of Python before continuing, then be sure to check out our Getting Started with Python guide.

1. Let’s start by creating a pretty simple Python script.

Within this script, we are going to send a message to the running Minecraft client.

Using the terminal, we can begin writing our Python script by running the following command.

nano minecraft.py

For this guide we will be using the nano text editor to write our code. However, feel free to use a dedicated code editor such as Visual Studio Code.

2. To start this script, we must first import the Minecraft Python library.

This library is what we will be using to interact with the game client.

Add the following line to import the minecraft module from the mcpi library.

from mcpi import minecraft

3. With the module imported, we need to create a connection to the game client.

We do this by using the minecraft libraries Minecraft.create() function and storing the result in a variable called “mc“.

mc = minecraft.Minecraft.create()

4. Using the object we stored in our mc variable, we can make calls to the game client.

The function that we are going to use for our example is the .postToChat("TEXT HERE") function.

What this function allows us to do is post text into the chat.

mc.postToChat("Hello World")

This bit of code is one of the simplest ways of interacting with Minecraft on your Raspberry Pi.

5. The final version of your code should end up looking just like what we have below.

from mcpi import minecraft

mc = minecraft.Minecraft.create()

mc.postToChat("Hello World")

Once the code has been entered, save the file by pressing CTRL + X, then Y, followed by ENTER.

5. Let’s go ahead and now run our little Python script.

python3 minecraft.py

After you have run the script, you should see the text “Hello World” appear within the game.

Hello World Minecraft API

Various Functions of the Minecraft Python API

In this section, we will explore some of the other functions that you can use to interact with Minecraft from your Raspberry Pi.

Find the Position of the Player

Using the Minecraft Python API, we can retrieve the x, y, and z position of the player.

To find the location, we can use the following line in Python.

pos = mc.player.getPos()

The pos variable will now store the player’s position. You can access the three positions by using pos.x, pos.y, and pos.z.

If you would prefer to store the positions as three separate variables, then it is also possible to do that by doing the following.

z, y, z = mc.player.getPos()

This method makes use of Pythons unpacking functionality to pull out the values to our x, y, and z variables.

Teleporting the Player

You are also able to teleport players by making use of the API.

To do this, we will be making use of the player.setPos(x, y, z) function.

Below you can see how we use both the .setPos(x, y, z) and .getPos() functions to teleport the player vertically in the game world by 50 blocks.

x, y, z = mc.player.getPos()
mc.player.setPos(x, y+50, z)

After running a script with these two functions, you should see the player appear in the air then fall back down to the ground.

Minecraft Set World Position

Setting a Block

The API also has the functionality to manipulate blocks in the game world.

To do this, you will need to make use of the mc.setBlock(x, y, z, blockID) function.

This function allows you to change a block at the specified position to the one you specify.

Using this example, we can use the following code to place a stone block one x position away from the player’s current position.

x, y, z = mc.player.getPos()
mc.setBlock(x+1, y, z, 1)

After you run this code, you should see a stone block appear. You may have to spin the camera around to see it.

Change Minecraft block using API

If you are interested in the different block IDs that you can use, then scroll down further as we have listed all the blocks supported in Minecraft Pi edition.

Setting Multiple Blocks

It is also possible to set multiple blocks at once by making use of the mc.setBlocks(x0, y0, z0, x1, y1, z1, blockID) function.

This function takes in six different arguments for the positions.

The first set of positions (x0, y0, and z0) define the starting point of the area. The second set of positions (x1, y1, z1) defines the endpoint of the area.

Using this function, you can set an area to a specific block type, for example, to create a giant stone cube.

In the example below, we are going to show you how to create a 5x5x5 stone cube by using the mc.setBlocks() function.

x, y, z = mc.player.getPos()
mc.setBlocks(x+1, y+1, z+1, x+6, y+6, z+6, 1)

After running these two lines of code, you should see a giant stone cube appear near the player.

Generate giant block using API in Minecraft

This API function is great if you want to make large objects quickly.

Retrieving the ID of a Block

Just like you can set a block, you can also retrieve the ID of a block in a specific position.

To do this, you can make use of the .getBlock(x, y, z) function. This function will retrieve the ID of the block at the specified position.

For example, you can use this function to check what block the player is currently standing on.

x, y, z = mc.player.getPos()
blockID = mc.getBlock(x, y-1, z)
print(blockID)

This function can be quite useful as you can program behaviors based on the block the player is standing on.

Minecraft Pi Edition Block IDs

Below you can see a list of the IDs of the available blocks in Minecraft Pi Edition.

Constant NameBlock ID
AIR0
STONE1
GRASS2
DIRT3
COBBLESTONE4
WOOD_PLANKS5
SAPLING6
BEDROCK7
WATER_FLOWING8
WATER8
WATER_STATIONARY9
LAVA_FLOWING10
LAVA10
LAVA_STATIONARY11
SAND12
GRAVEL13
GOLD_ORE14
IRON_ORE15
COAL_ORE16
WOOD17
LEAVES18
GLASS20
LAPIS_LAZULI_ORE21
LAPIS_LAZULI_BLOCK22
SANDSTONE24
BED26
COBWEB30
GRASS_TALL31
WOOL35
FLOWER_YELLOW37
FLOWER_CYAN38
MUSHROOM_BROWN39
MUSHROOM_RED40
GOLD_BLOCK41
IRON_BLOCK42
STONE_SLAB_DOUBLE43
STONE_SLAB44
BRICK_BLOCK45
TNT46
BOOKSHELF47
MOSS_STONE48
OBSIDIAN49
TORCH50
FIRE51
STAIRS_WOOD53
CHEST54
DIAMOND_ORE56
DIAMOND_BLOCK57
CRAFTING_TABLE58
FARMLAND60
FARMLAND_INACTIVE61
FARMLAND_INACTIVE61
FURNACE_ACTIVE62
DOOR_WOOD64
LADDER65
STAIRS_COBBLESTONE67
DOOR_IRON71
REDSTONE_ORE73
SNOW78
ICE79
SNOW_BLOCK80
CACTUS81
CLAY82
SUGAR_CANE83
FENCE85
GLOWSTONE_BLOCK89
BEDROCK_INVISIBLE95
STONE_BRICK98
GLASS_PANE102
MELON103
FENCE_GATE107
GLOWING_OBSIDIAN246
NETHER_REACTOR_CORE247

If you would like to learn more about the Minecraft Pi Edition Python API, then you can check out our Minecraft API reference guide. This guide shows you all the functionality exposed by the API and explains how they work.

Hopefully, at this point in the tutorial, you will now have Minecraft successfully installed to your Raspberry Pi

You should also now have an understanding of how you can make use of the Python API available for Minecraft Pi Edition.

If you have run into any issues with this tutorial or have any feedback, then feel free to drop a comment below.

4 Comments

  1. Avatar for adriaan
    adriaan on

    the first code line syntax is wrong, it should be
    from mcpi import minecraft

    1. Avatar for Emmet
      Emmet on
      Editor

      Hi Adriaan,

      Thank you for pointing out this mistake. I have gone ahead and corrected that and gave the guide a quick cleanup.

      Cheers,
      Emmet

  2. Avatar for Ayden
    Ayden on

    When I did sudo apt install Minecraft it said it was unable to locate package Minecraft. I also updated and upgraded it before doing so.

    1. Avatar for Emmet
      Emmet on
      Editor

      Hi Ayden,

      Make sure that you are running Raspbian, and make sure that you are typing in minecraft-pi and not just minecraft.

      Cheers,
      Emmet

Leave a Reply

Your email address will not be published. Required fields are marked *