Steven C
commited on
Commit
•
57e3d40
1
Parent(s):
37a77f2
Add README
Browse files
README.md
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Text Captcha Breaker
|
2 |
+
|
3 |
+
## Prerequisites
|
4 |
+
|
5 |
+
Before running this project, make sure you have the following prerequisites installed:
|
6 |
+
|
7 |
+
- [git-lfs](https://github.com/git-lfs/git-lfs/wiki/Installation#debian-and-ubuntu): A Git extension for versioning large files.
|
8 |
+
|
9 |
+
To install git-lfs on Debian and Ubuntu, run the following commands:
|
10 |
+
|
11 |
+
```bash
|
12 |
+
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
|
13 |
+
sudo apt-get update
|
14 |
+
sudo apt-get install git-lfs
|
15 |
+
git lfs install
|
16 |
+
```
|
17 |
+
|
18 |
+
- Required Python packages: Install the required packages by running the following command:
|
19 |
+
|
20 |
+
```bash
|
21 |
+
pip install -r requirements.txt
|
22 |
+
```
|
23 |
+
|
24 |
+
## Usage
|
25 |
+
|
26 |
+
To use this project, run the following command:
|
27 |
+
|
28 |
+
```bash
|
29 |
+
python3 app.py path/to/your_img
|
30 |
+
```
|