|
1 | 1 | # LEGO Block Creator Usage |
2 | 2 |
|
3 | | -To install LEGO Block Creator, you can either use an executable package (Windows), or run the scripts through Python (Windows, macOS, Linux). |
| 3 | +To install LEGO Block Creator, you can use an executable package (Windows), run the scripts through Python (Windows, macOS, Linux), install from the [Python Package Index](https://pypi.org/), or run a [Docker](https://www.docker.com/) container from [GitHub Packages](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pkgs/container/lego-block-creator). |
4 | 4 |
|
5 | 5 | ## Executable Package |
6 | 6 |
|
7 | 7 | 1. To run the executable package, download the latest `.zip` file from [GitHub Releases](https://github.com/Dog-Face-Development/LEGO-Block-Creator/releases/latest) page. |
8 | 8 | 2. Extract the `.zip` file using a program like [7-Zip](https://www.7-zip.org/). |
9 | 9 | 3. _(Optional) Move the files to `C:\Program Files` and create a shortcut._ |
10 | | -4. Double click on `main.exe`. |
| 10 | +4. Double click on `send.exe`. |
11 | 11 | 5. Enjoy the program! |
12 | 12 |
|
13 | 13 | ## Python Script |
14 | 14 |
|
15 | 15 | 1. To run the Python script, download the latest source code release from [GitHub Releases](https://github.com/Dog-Face-Development/LEGO-Block-Creator/releases/latest) page. |
16 | 16 | 2. Download and install [Python](https://www.python.org/downloads/). |
17 | 17 | 3. Extract the source code files using a program like [7-Zip](https://www.7-zip.org/). |
18 | | -4. Double click on `main.py`, or right-click and open with IDLE and press `F5`. |
| 18 | +4. Double click on `send.py`, or right-click and open with IDLE and press `F5`. |
19 | 19 | 5. Enjoy the program! |
| 20 | + |
| 21 | +## Python Package Index (`pip`) |
| 22 | + |
| 23 | +1. Download and install [Python](https://www.python.org/downloads/). |
| 24 | +2. Open a terminal and run the command: `pip install lego-block-creator`. |
| 25 | +3. Start the program by running the command: `lego-block-creator`. |
| 26 | +4. Enjoy the program! |
| 27 | + |
| 28 | +## Docker Container |
| 29 | + |
| 30 | +1. Download and install [Docker](https://www.docker.com/products/docker-desktop/). |
| 31 | +2. Open a terminal and pull the container: `docker pull ghcr.io/dog-face-development/lego-block-creator:master`. |
| 32 | +3. Start the container: `docker run -i -t ghcr.io/dog-face-development/lego-block-creator:master python main.py`. |
| 33 | +4. Enjoy the program! |
0 commit comments