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:
38
docs/install/Debian.md
Normal file
38
docs/install/Debian.md
Normal 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
|
||||
```
|
||||
@@ -1,4 +1,4 @@
|
||||
requests
|
||||
requests>=2.4.3
|
||||
setuptools
|
||||
docker-py
|
||||
websocket-client>=0.11.0
|
||||
|
||||
Reference in New Issue
Block a user