Skip to content

Commit

Permalink
Merge b7560df into d639848
Browse files Browse the repository at this point in the history
  • Loading branch information
bcollazo committed Jan 22, 2022
2 parents d639848 + b7560df commit 8aeca1e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Catanatron

[![Coverage Status](https://coveralls.io/repos/github/bcollazo/catanatron/badge.svg?branch=master)](https://coveralls.io/github/bcollazo/catanatron?branch=master)
[![Documentation Status](https://readthedocs.org/projects/catanatron/badge/?version=latest)](https://catanatron.readthedocs.io/en/latest/?badge=latest) [![Join the chat at https://gitter.im/bcollazo-catanatron/community](https://badges.gitter.im/bcollazo-catanatron/community.svg)](https://gitter.im/bcollazo-catanatron/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Documentation Status](https://readthedocs.org/projects/catanatron/badge/?version=latest)](https://catanatron.readthedocs.io/en/latest/?badge=latest)
[![Join the chat at https://gitter.im/bcollazo-catanatron/community](https://badges.gitter.im/bcollazo-catanatron/community.svg)](https://gitter.im/bcollazo-catanatron/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/bcollazo/catanatron/blob/master/catanatron_experimental/catanatron_experimental/notebooks/Overview.ipynb)

Settlers of Catan Bot Simulator. Test out bot strategies at scale (thousands of games per minutes). The goal of this project is to find the strongest Settlers of Catan bot possible.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"metadata": {},
"source": [
"# Catanatron Introduction\n",
"This shows example usage of Catanatron. First, install requirements."
"This shows example usage of Catanatron. First, clone the repo and install requirements."
]
},
{
Expand All @@ -16,11 +16,13 @@
"metadata": {},
"outputs": [],
"source": [
"!pip install -r https://raw.githubusercontent.com/bcollazo/catanatron/master/dev-requirements.txt\n",
"!pip install git+https://github.com/bcollazo/catanatron.git@master#egg=catanatron\\&subdirectory=catanatron_core\n",
"!pip install git+https://github.com/bcollazo/catanatron.git@master#subdirectory=catanatron_server\\&egg=catanatron_server\n",
"!pip install git+https://github.com/bcollazo/catanatron.git@master#subdirectory=catanatron_gym\\&egg=catanatron_gym\n",
"!pip install git+https://github.com/bcollazo/catanatron.git@master#subdirectory=catanatron_experimental\\&egg=catanatron_experimental"
"!git clone https://github.com/bcollazo/catanatron.git\n",
"!pip install -r catanatron/dev-requirements.txt\n",
"!pip install -e catanatron/catanatron_core\n",
"!pip install -e catanatron/catanatron_server\n",
"!pip install -e catanatron/catanatron_gym\n",
"!pip install -e catanatron/catanatron_experimental\n",
"exit() # Forcefully restart runtime to picks up installed requirements"
]
},
{
Expand Down

0 comments on commit 8aeca1e

Please sign in to comment.