Skip to main content

Project Malmo is a platform for Artificial Intelligence experimentation and research built on top of Minecraft

Project description

Pip installable package for Malmo

Malmo can be built from source (Instructions for building from source) or easily installed from the pre-build version (Install from pre-built version). However, it is often even simpler and sufficient to install Malmo as a python native platform wheel for Windows, MacOS or Linux.

Prerequisites

In order to pip3 install malmo there are some environment and OS dependency requirements that have to be met:

  1. Java 8 must be installed and the JAVA_HOME environment variable set up for Java8.

  2. git should be installed and on your shell search path.

  3. MALMO_XSD_PATH must be set to where the XSD schema files are located (more on this below).

  4. There are a few OS specific dependencies that must be pre-installed.

    • For Ubuntu Linux these are follows: python3-pip ffmpeg openjdk-8-jdk git, We'll add more Linux flavours specifics here soon but meanwhile the docker build scripts are a good place to start.

    • Windows - please use the manual install to install dependencies. (The dependencies are python3, ffmpeg, 7zip, Java8 and additionally git.)

    • MacOSX - please see MacOSX.

If you are unsure of what to pre-install for your Linux flavour, the Malmo docker build files might be a good place to start (Docker build files).

Using the prebuilt Docker image

Rather than installing these dependencies manually it's simper to use docker to launch a docker container using our prebuilt docker image.

Our docker image already has the Malmo Python package installed, as well as the source code and Minecraft (and the dependencies of course), along with a Jupyter server so can start coding right away!

The docker container will launch the Malmo Minecraft Mod and a Jupyter server on start up, and is set up to allow remote access via the VNC remote desktop display protocol so that you are able to see the Minecraft game running inside the container.

docker run -it -p 5901:5901 -p 6901:6901 -p8888:8888 -e VNC_PW=vncpassword andkram/malmo

You can add a -v drive:/somedir:/somedir option to the above docker run command to mount a directory for sharing your coding project files. You should also select a different hard to guess password.

To access the container browse to http://localhost:6901/?password=vncpassword (or connect to port 5901 using a VNC client).

Once Minecraft is completely launched in the container (which can take some minutes the first time the container is run) you should see it in the VNC desktop in your open browser tab.

After launching Minecraft, a Jupiter server is also started up and a connection advise hint is written on the docker container's output. Please follow the advice to cut & paste the url into another browser tab but substituting localhost for 0.0.0.0 or address URL part (as we are bridging port 8888 to the docker container).

The output looks something like this:

Copy/paste this URL into your browser when you connect for the first time,
    to login with a token:
        http://0.0.0.0:8888/?token=1c6390221431ca75146946c52e253f063431b6488420bbac

(Here you should have used: http://localhost:8888/?token=1c6390221431ca75146946c52e253f063431b6488420bbacfor Jupyter.)

To run a sample mission in Jupyter, create a python3 notebook and enter from malmo.run_mission import run; run() and execute the notebook.

Install using pip locally

If you would rather install Malmo locally without docker you can do that (after satisfying the OS & environment variable requirements above) using:

pip3 install malmo

Create or change into a working directory where you would like Malmo to be installed (in a sub directory named MalmoPlatform) and do:

python3 -c 'import malmo.minecraftbootstrap; malmo.minecraftbootstrap.download()'

This command will create a new directory (called MalmoPlatform) containing the Malmo GitHub project in your (current) working directory. By default, the master branch is downloaded. You can specify a branch using a string keyword argument (named branch) to the download function - which can be necessary if the malmo package was not installed recently and the download is for some reason done again.

Please remember to set up the MALMO_XSD_PATH environment variable to point to the MalmoPlatform/Schemas directory. i.e. full path of working dir and MalmoPlatform/Schema.

Alternatively, you could set it in Python temporarily with a malmo.minecraftbootstrap.set_malmo_xsd_path(); statement after the import malmo.minecraftbootstrap; module import in the python command below.

You can now launch Minecraft from your working directory:

python3 -c 'import malmo.minecraftbootstrap; malmo.minecraftbootstrap.launch_minecraft()'

This may take some time (minutes if it's the first run as it needs to build Minecraft Forge).

The malmo package includes a simple test mission which you can run as follows in another shell / terminal session:

python3 -c 'from malmo.run_mission import run; run()'

(In your sessond shell or terminal session, add a malmo.minecraftbootstrap.set_malmo_xsd_path() statement if you have not already set up the MALMO_XSD_PATH.)

You can also run the mission from Jupyter. Simply create a Python3 notebook and add from malmo.run_mission import run; run() to the notebook and execute it.

To start coding you could try import malmo; help(malmo). The MalmoPython sub-module (import malmo.MalmoPython) is the native library used by all the Malmo Python examples.

Running existing examples

If you wish to run old Malmo examples against the pip "malmo" module without editing imports then you may want to copy in MalmoPython.py and malmoutil.py from the pip package backwards compatibility directory or include them on your PYTHONPATH.

Deinstall

To deinstall delete the (downloaded) MalmoPlatform directory and it's contents and do a pip3 uninstall malmo.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

malmo-0.37.0.0-cp37-cp37m-win_amd64.whl (673.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

malmo-0.37.0.0-cp37-cp37m-macosx_10_14_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

File details

Details for the file malmo-0.37.0.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: malmo-0.37.0.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 673.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for malmo-0.37.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9fe09e6d6a016c0b14a574efc48c90f519cd9c6cb8be7cd15f79c892da7c53d9
MD5 6cdf196f251d06acf2302faf479bb8fb
BLAKE2b-256 ac3984199642e8b2c0cac81236e3191fc38791ab1b325a814c3bb7dfa5b95976

See more details on using hashes here.

File details

Details for the file malmo-0.37.0.0-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: malmo-0.37.0.0-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.2

File hashes

Hashes for malmo-0.37.0.0-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f9b502f1888f6f9ad4e66e3e19f22b9823c5c84582103a6298559f63701283d5
MD5 d9ec2451d2b26399e2e4fbd8c1ffaa1a
BLAKE2b-256 4fb0d96a17e2938a6695bf05f1efdcf8dc7853f092591c7a24ff6e0f23f646c5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page