Installation¶
Google Colab¶
Using Google Colab is the easiest way to get started. Just add in the first cell of your notebook:
# Download and install latest version of the package
!pip install --upgrade git+https://github.com/jparisu/IArena.git
# Or to download a specific version
!pip install --upgrade git+https://github.com/jparisu/IArena.git@v0.2
This will install the specific version of the package and make it available in the rest of the cells of your notebook.
Install in Windows Anaconda¶
In order to install the package in Windows Anaconda, the steps are the same as for Google Colab.
The only detail is that git may not be installed by default in Anaconda.
From a command prompt, you can install it in a conda environment inside Anaconda:
conda install git
pip install --upgrade git+https://github.com/jparisu/IArena.git@v0.2
Coming soon¶
Installation from source
Installation via
pipInstallation via
conda