Installation¶
ecsctl is a python package. If you need install python package you have several options.
Install via pip¶
If you need install python package globally usage this command.
$ pip install git+https://github.com/witold-gren/ecsctl.git
Install via setup.py¶
If ou prefer usage setup tool and install without pip follow this pattern:
$ git clone https://github.com/witold-gren/ecsctl.git
$ cd ecsctl
$ python setup.py install
Install in virtual environment¶
(Recommended for Python programming)
If you use python and frequently need to install additional python modules, pyenv and pyenv-virtualenv are extremely useful.