Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 1.13 KB

install.md

File metadata and controls

23 lines (14 loc) · 1.13 KB

Installing Archai

Prerequisites

Archai requires Python 3.6+ and PyTorch 1.2+. To install Python we highly recommend Anaconda. Archai works both on Linux as well as Windows.

Install from source code

We recommend installing from the source code:

git clone https://github.com/microsoft/archai.git
cd archai
install.sh # on Windows, use install.bat

Using Dockers

You can also use dockers in the dockers folder. These are useful for large scale experimentation on compute clusters.

Notes

Vast majority of Archai code base works simply by installing the package by running the command pip install -e . in archai source directory. However, this won't install pydot and graphviz to visualize the generated architectures. Also, if you have older pickle5 versions, you might get some errors which can be resolved by installing pickle5 using conda. This is what install script does.