Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/777arc/hamwow
https://github.com/777arc/hamwow
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/777arc/hamwow
- Owner: 777arc
- License: gpl-3.0
- Created: 2024-08-08T03:31:07.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-10T06:07:37.000Z (5 months ago)
- Last Synced: 2024-11-01T22:05:40.456Z (2 months ago)
- Language: Python
- Size: 107 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Run Tests
Run unit tests with `python -m pytest`
# Building
## Windows
```
pip install -r requirements.txt
pip install pyrtlsdrlib
```Create portable .exe with:
```
pip install pyinstaller
python -m PyInstaller -F main.py
```
The .exe will be in /dist## Ubuntu
```
sudo apt update
sudo apt install portaudio19-dev
pip install -r requirements.txt
```