1
0
mirror of https://github.com/projectatomic/atomic.git synced 2026-02-05 18:45:01 +01:00

added debian install support and doc

This commit is contained in:
Charlie Drage
2015-08-27 15:08:40 -04:00
parent 011a826ff8
commit 190f396d3d
2 changed files with 39 additions and 1 deletions

38
docs/install/Debian.md Normal file
View File

@@ -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
```

View File

@@ -1,4 +1,4 @@
requests
requests>=2.4.3
setuptools
docker-py
websocket-client>=0.11.0