Skip to content

Commit 9529350

Browse files
committed
spelling
1 parent 034c614 commit 9529350

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

scripts/python-wheel/README.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,27 @@ However, it is often even simpler and sufficient to install Malmo as a python na
99

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

12-
1. Java 8 musst be installed and the JAVA_HOME environment variable must be set up for Java8.
12+
1. Java 8 must be installed and the JAVA_HOME environment variable set up for Java8.
1313
2. [git](https://git-scm.com/) should be installed and on your shell search path.
14-
3. MALMO_XSD_PATH must be set to where the XSD schema files are (more on this below).
14+
3. MALMO_XSD_PATH must be set to where the XSD schema files are located (more on this below).
1515
4. There are a few OS specific dependencies that must be pre-installed.
1616

1717
* For [Ubuntu Linux](https://github.com/Microsoft/malmo/blob/package/doc/install_linux.md) these are follows:
1818
`python3-pip ffmpeg openjdk-8-jdk git`,
1919
We'll add more Linux flavours here soon but meanwhile the docker build scripts are a good place to start.
2020

2121
* Windows - please use the [Powershell scripts](https://github.com/Microsoft/malmo/blob/package/doc/install_windows.md) to install dependencies.
22-
(The dependencies are python3, ffmpeg, 7zip and Java8. You also need to have git installed.)
22+
(The dependencies are python3, ffmpeg, 7zip, Java8 and git.)
2323

2424
* MacOSX - please see [MacOSX](https://github.com/Microsoft/malmo/blob/master/doc/install_macosx.md).
25-
You also need git if you want to download Malmo code and examples.
2625

2726
If you are unsure of what to pre-install for your Linux flavour,
2827
the Malmo docker build files might be a good place to start
2928
([Docker build files](https://github.com/Microsoft/malmo/tree/master/scripts/docker)).
3029

3130
## Using the prebuilt Docker image ##
3231

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

3534
Our docker image already has the Malmo Python package installed, as well as the source code and Minecraft
3635
(and the dependencies of course), along with a Jupyter server so can start coding right away!
@@ -56,7 +55,7 @@ After launching Minecraft, a Jupiter server is also started up and a connection
5655
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
5756
(as we are bridging port 8888 to the docker container).
5857

59-
The advise looks something like this:
58+
The output looks something like this:
6059

6160
```
6261
Copy/paste this URL into your browser when you connect for the first time,
@@ -67,7 +66,7 @@ Copy/paste this URL into your browser when you connect for the first time,
6766

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

70-
## Installing using pip locally ##
69+
## Install using pip locally ##
7170

7271
If you would rather install Malmo locally without docker you can do that
7372
(after satisfying the OS & environment variable requirements above) using:
@@ -84,11 +83,11 @@ python3 -c 'import malmo.minecraftbootstrap; malmo.minecraftbootstrap.download()
8483

8584
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.
8685

87-
Please remeber to set up the MALMO_XSD_PATH environment variable to point to the MalmoPlatform/Schemas directory.
88-
i.e. full path of working dir and MalmoPlaftorm/Schema.
86+
Please remember to set up the MALMO_XSD_PATH environment variable to point to the MalmoPlatform/Schemas directory.
87+
i.e. full path of working dir and MalmoPlatform/Schema.
8988

9089
Alternatively, you could set it in Python temporarily with a `malmo.minecraftbootstrap.set_malmo_xsd_path();` statement after the
91-
`import malmo.minecraftbootstrap;` module import in the python commands below.
90+
`import malmo.minecraftbootstrap;` module import in the python command below.
9291

9392
You can now launch Minecraft from your working directory:
9493

0 commit comments

Comments
 (0)