You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-8Lines changed: 18 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -19,25 +19,35 @@ I had the idea to create this project after seeing the logos made by [adi1090x](
19
19
20
20
-[adi1090x's GitHub](https://github.com/adi1090x)
21
21
22
-
# Usage
22
+
# How to install 📥
23
23
24
-
First, clone this repository
24
+
You can install octologo easily with pip:
25
25
26
26
```bash
27
-
git clone https://github.com/SkwalExe/octo-logo
28
-
cd octo-logo
27
+
python3 -m pip install octologo
29
28
```
30
29
31
-
Then, install the dependencies
30
+
You can also use [pipx](https://pypa.github.io/pipx/):
32
31
33
32
```bash
34
-
pip3 install -r requirements.txt
33
+
pipx install octologo
35
34
```
36
35
37
-
And finally, launch the program and follow the instructions
36
+
Now, start the app with:
38
37
39
38
```bash
40
-
python3 src/main.py
39
+
octologo
40
+
```
41
+
42
+
> [!CAUTION]
43
+
> If the command is not found after installtion, you must add `~/.local/bin` to your path. You can do this by adding `export PATH=$PATH:~/.local/bin` to your `.bashrc` or `.zshrc` file.
0 commit comments