Skip to content

Instantly share code, notes, and snippets.

@show0k
Last active March 16, 2018 15:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save show0k/4be362372bff0e3eaf675e1018110149 to your computer and use it in GitHub Desktop.
Save show0k/4be362372bff0e3eaf675e1018110149 to your computer and use it in GitHub Desktop.
Standalone malmo install on Linux thanks to Ananconda.
# Download and install Miniconda
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh
bash miniconda.sh -b -p $HOME/miniconda
rm miniconda.sh
echo "export PATH=$HOME/miniconda/bin:$PATH" >> "$HOME/.bashrc"
export PATH="$HOME/miniconda/bin:$PATH"
conda config --add channels conda-forge
conda config --set show_channel_urls True
conda config --set always_yes yes --set changeps1 no
# Install malmo in a conda env malmo
conda create python=2.7 --name malmo
source activate malmo
conda install -c crowdai malmo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment