-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,24 @@ | ||
# stl_compresser | ||
# STL Compressor | ||
|
||
usage: | ||
STL Compressor is a tool designed to compress STL files efficiently. Users can conveniently compress multiple STL files in batches, reducing their file sizes without compromising on quality. | ||
|
||
```bash | ||
pip install -r requirements.txt | ||
python stl_compresser_ui.py | ||
``` | ||
## Usage | ||
|
||
* Windows users can download [here](https://github.com/fan-ziqi/stl_compresser/releases) | ||
|
||
* Python | ||
|
||
```bash | ||
git clone https://github.com/fan-ziqi/stl_compresser.git | ||
cd stl_compresser | ||
pip install -r requirements.txt | ||
python stl_compresser_ui.py | ||
``` | ||
|
||
## Packaging | ||
|
||
To package the application as a standalone executable, use PyInstaller: | ||
|
||
pack: | ||
```bash | ||
pyinstaller --onefile --windowed stl_compresser_ui.py | ||
``` |