Installation
Recommended Setup on Windows
Download and install the latest version of Anaconda 3
Launch Anaconda Navigator
Click Environments, choose an environment name, select Python 3.8, and click Create
Click Home, browse to your new environment, and click Install under Jupyter Notebook
Launch the Anaconda Prompt and activate the environment:
conda activate <env_name>
Install ArbitrageLab using
pip
:pip install arbitragelab
You are now ready to use ArbitrageLab.
Recommended Setup on Linux / MacOS
Note
If you are running on Apple Silicon, you will need to make sure Homebrew is installed, and that you have installed cmake
:
brew install cmake
Install some variant of
conda
environment manager (we recommend Anaconda or Miniconda) for your platform.Launch a new terminal and create a new
conda
environment using your environment manager:conda create -n <env_name> python=3.8
Make sure the environment is activated:
conda activate <env_name>
Install ArbitrageLab using
pip
:pip install arbitragelab
You are now ready to use ArbitrageLab.
Google Colab
Note
Google Colab frequently updates the version of Python it used. You might need to explore additional methods of using a Python 3.8 kernel for full support of ArbitrageLab.
Open a new Terminal, and install ArbitrageLab using
pip
:pip install arbitragelab