Skip to content

Commit d40ebae

Browse files
authored
Create INSTALLDOCS.md
1 parent 3ef1aca commit d40ebae

File tree

1 file changed

+135
-0
lines changed

1 file changed

+135
-0
lines changed

INSTALLDOCS.md

Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
# Install Docs
2+
3+
There, you can watch, how to install OntoTOOL on different Operating Systems.
4+
5+
# Ubuntu/Debian/Kali (apt)
6+
7+
1. Installing <code>git</code> and <code>pip</code>:
8+
```bash
9+
sudo apt install git python3-pip
10+
```
11+
12+
2. Cloning the repo:
13+
```bash
14+
git clone https://github.com/memb3r/ontotool
15+
```
16+
17+
3. Moving to repo folder:
18+
```bash
19+
cd ontotool
20+
```
21+
22+
4. Starting OntoTOOL:
23+
```bash
24+
python3 ontotool.py
25+
```
26+
27+
# Termux (pkg)
28+
29+
1. Installing <code>git</code>, <code>python</code> and <code>pip</code>:
30+
```bash
31+
pkg install python python-pip git
32+
```
33+
34+
2. Cloning the repo:
35+
```bash
36+
git clone https://github.com/memb3r/ontotool
37+
```
38+
39+
3. Moving to repo folder:
40+
```bash
41+
cd ontotool
42+
```
43+
44+
4. Starting OntoTOOL:
45+
```bash
46+
python ontotool.py
47+
```
48+
49+
# Arch Linux (pacman)
50+
51+
1. Installing <code>git</code> and <code>pip</code>:
52+
```bash
53+
sudo pacman -S python-pip git
54+
```
55+
56+
2. Cloning the repo:
57+
```bash
58+
git clone https://github.com/memb3r/ontotool
59+
```
60+
61+
3. Moving to repo folder:
62+
```bash
63+
cd ontotool
64+
```
65+
66+
4. Starting OntoTOOL:
67+
```bash
68+
python ontotool.py
69+
```
70+
71+
# Fedora (dnf)
72+
73+
1. Installing <code>git</code> and <code>pip</code>:
74+
```bash
75+
sudo dnf install python3-pip git
76+
```
77+
78+
2. Cloning the repo:
79+
```bash
80+
git clone https://github.com/memb3r/ontotool
81+
```
82+
83+
3. Moving to repo folder:
84+
```bash
85+
cd ontotool
86+
```
87+
88+
4. Starting OntoTOOL:
89+
```bash
90+
python3 ontotool.py
91+
```
92+
93+
# CentOS/RHEL (yum)
94+
95+
1. Installing <code>git</code> and <code>pip</code>:
96+
```bash
97+
sudo yum install python3-pip git
98+
```
99+
100+
2. Cloning the repo:
101+
```bash
102+
git clone https://github.com/memb3r/ontotool
103+
```
104+
105+
3. Moving to repo folder:
106+
```bash
107+
cd ontotool
108+
```
109+
110+
4. Starting OntoTOOL:
111+
```bash
112+
python3 ontotool.py
113+
```
114+
115+
# openSUSE (zypper)
116+
117+
1. Installing <code>git</code> and <code>pip</code>:
118+
```bash
119+
sudo zypper install python3-pip git
120+
```
121+
122+
2. Cloning the repo:
123+
```bash
124+
git clone https://github.com/memb3r/ontotool
125+
```
126+
127+
3. Moving to repo folder:
128+
```bash
129+
cd ontotool
130+
```
131+
132+
4. Starting OntoTOOL:
133+
```bash
134+
python3 ontotool.py
135+
```

0 commit comments

Comments
 (0)