Skip to content

Latest commit

 

History

History
20 lines (11 loc) · 515 Bytes

install.rst

File metadata and controls

20 lines (11 loc) · 515 Bytes

How to Install Automate?

Automate can be installed like ordinary python package. I recommend installation in within virtual environment (see virtualenv).

  1. (optional): Create and start using virtualenv:

    mkvirtualenv automate
    workon automate
  2. Install from pypi:

    pip install automate

Optionally, you can specify some of the extras, i.e. web, rpc, raspberrypi, arduino:

pip install automate[web,rpc,raspberrypi,arduino]