Avalanche has been designed for extreme portability and usability. Indeed, it can be run on every OS and native python environment. π»ππ§
π¦ Installing Avalanche with Pip
you can install Avalanche with pip:
pipinstallavalanche-lib
That's it. Now you can start using Avalanche.
Installing the Master Branch Using Anaconda
We suggest you to use the pip package, but if you need some recent features you may want to install directly from the master branch. In general, the master branch is well tested and safe to use. However, the API of new features may change more frequently or break backward compatibility. Reproducibility is also easier if you use the pip package.
# choose your python versionpython="3.8"# Step 1gitclonehttps://github.com/ContinualAI/avalanche.gitcdavalanchecondacreate-navalanche-envpython=$python -cconda-forgecondaactivateavalanche-env# Step 2# Istall Pytorch with Conda (instructions here: https://pytorch.org/)# Step 3condaenvupdate--fileenvironment.yml
On Linux, alternatively, you can simply run the install_environment.sh in the Avalanche home directory. The script takes 2 arguments: --python and --cuda_version. Check --help for details.
You can test your installation by running the examples/test_install.py script. Make sure to include avalanche into your $PYTHONPATH if you are running examples with the command line interface.
π» Developer Mode Install
If you want to expand Avalanche and help us improve it (see the "From Zero to Hero" Tutorial). In this case we suggest to create an environment in developer-mode as follows (just a couple of more dependencies will be installed).
Assuming you have Anaconda (or Miniconda) installed on your system, you can follow these simple steps:
Install the avalanche-dev-env environment and activate it.
These three steps can be accomplished with the following lines of code:
On Linux, alternatively, you can simply run the install_environment_dev.sh in the Avalanche home directory. The script takes 2 arguments: --python and --cuda_version. Check --help for details.
You can test your installation by running the examples/test_install.py script. Make sure to include avalanche into your $PYTHONPATH if you are running examples with the command line interface.
That's it. now we have Avalanche up and running and we can start contribute to it!
π€ Run it on Google Colab
You can run this chapter and play with it on Google Colaboratory: