diff --git a/docs/install/Debian.md b/docs/install/Debian.md new file mode 100644 index 0000000..bc02b5e --- /dev/null +++ b/docs/install/Debian.md @@ -0,0 +1,38 @@ +#INSTALL +`atomic` can be installed through below methods + +##Make +On Debian, You will need to install the required build dependencies to build `atomic` + +Install the selinux python bindings in order to build `atomic` +``` +apt-get install python-selinux + +``` + +Pip the required python depencies and `ln` to the /usr/bin dir +``` +pip install pylint go-m2dman +ln /usr/local/bin/pylint /usr/bin/pylint +``` + + +Get the code +``` +git clone https://github.com/projectatomic/atomic +cd atomic +``` + +Build and install it. +``` +pip install -r requirements.txt +make all +make install +``` + +Your install will now be complete! + +``` +▶ atomic --version +1.2 +``` diff --git a/requirements.txt b/requirements.txt index 5995f5a..021f62c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -requests +requests>=2.4.3 setuptools docker-py websocket-client>=0.11.0