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
+33-8Lines changed: 33 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,23 +6,48 @@
6
6
7
7
A Command Line Tool for Unix Based Operating Systems to instantly open Stack Overflow Solution for corresponding error
8
8
9
-
Currently only on Ubuntu/Debian Based Systems
10
-
11
9
Tired of googling all the time by copy pasting errors and getting incorrect solutions from LLMs?
12
10
13
11
QuickOverflow has a solution for that.
14
12
15
-
QuickOverflow is a Command Line Tool for Ubuntu/Debian based systems to quickly get to solutions for your errors on browser right from your terminal, without ever clicking on your browser icon.
13
+
QuickOverflow is a Command Line Tool for Linux based systems to quickly get to solutions for your errors on browser right from your terminal, without ever clicking on your browser icon.
16
14
17
-
As of v1.0, QuickOverflow only supports Python debugging. However, support for other language and distributions is planned and underway.
15
+
As of v1.0, QuickOverflow only supports Python debugging. However, support for other languages is planned and underway.
18
16
19
17
## Getting Started
20
18
21
19
To get started you must have:
22
20
23
-
-A supported Ubuntu/Debian System
21
+
-Linux Based Operating System
24
22
- Python 3.12
25
23
24
+
Most distributions come with Python3 installed, however Python 3.12 is highly recommended for dependency compatibility
25
+
26
+
Check your python version using
27
+
28
+
```sh
29
+
$ python3 --version
30
+
```
31
+
If you have a different version, follow the steps below:
0 commit comments