mirror of https://github.com/leafspark/AutoGGUF
docs: update build instructions and dependencies
This commit is contained in:
parent
f5b3b43d01
commit
c659790942
23
README.md
23
README.md
|
@ -42,10 +42,6 @@ ### Cross-platform
|
||||||
```
|
```
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
```
|
```
|
||||||
or
|
|
||||||
```
|
|
||||||
pip install PyQt6 requests psutil shutil numpy torch safetensors gguf
|
|
||||||
```
|
|
||||||
2. Run the application:
|
2. Run the application:
|
||||||
```
|
```
|
||||||
python src/main.py
|
python src/main.py
|
||||||
|
@ -86,11 +82,10 @@ ## Building
|
||||||
|
|
||||||
### Cross-platform
|
### Cross-platform
|
||||||
```bash
|
```bash
|
||||||
cd src
|
|
||||||
pip install -U pyinstaller
|
pip install -U pyinstaller
|
||||||
pyinstaller main.py --onefile
|
./build.sh RELEASE | DEV
|
||||||
cd dist/main
|
cd build/<type>/dist/
|
||||||
./main
|
./AutoGGUF
|
||||||
```
|
```
|
||||||
|
|
||||||
### Windows
|
### Windows
|
||||||
|
@ -101,13 +96,7 @@ ### Windows
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
|
|
||||||
- PyQt6
|
Find them in `requirements.txt`.
|
||||||
- psutil
|
|
||||||
- shutil
|
|
||||||
- numpy
|
|
||||||
- torch
|
|
||||||
- safetensors
|
|
||||||
- gguf (bundled)
|
|
||||||
|
|
||||||
## Localizations
|
## Localizations
|
||||||
|
|
||||||
|
@ -117,7 +106,6 @@ ## Localizations
|
||||||
|
|
||||||
## Known Issues
|
## Known Issues
|
||||||
|
|
||||||
- Saving preset while quantizing causes UI thread crash (planned fix: remove this feature)
|
|
||||||
- Cannot delete task while processing (planned fix: disallow deletion before cancelling or cancel automatically)
|
- Cannot delete task while processing (planned fix: disallow deletion before cancelling or cancel automatically)
|
||||||
|
|
||||||
## Planned Features
|
## Planned Features
|
||||||
|
@ -125,6 +113,7 @@ ## Planned Features
|
||||||
- Actual progress bar tracking
|
- Actual progress bar tracking
|
||||||
- Perplexity testing
|
- Perplexity testing
|
||||||
- Time estimation for quantization
|
- Time estimation for quantization
|
||||||
|
- `nvidia-smi` monitoring support
|
||||||
|
|
||||||
## Troubleshooting
|
## Troubleshooting
|
||||||
|
|
||||||
|
@ -136,7 +125,7 @@ ## Contributing
|
||||||
|
|
||||||
## User Interface
|
## User Interface
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Stargazers
|
## Stargazers
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue