mirror of
https://github.com/NovaOSS/violet.git
synced 2024-11-25 16:44:00 +01:00
stuff
This commit is contained in:
parent
6274963b49
commit
d8afbb17fe
22
README.md
22
README.md
|
@ -5,6 +5,7 @@
|
||||||
- Accurate mathematical calculations
|
- Accurate mathematical calculations
|
||||||
- File system access
|
- File system access
|
||||||
- Voice support (SpeechToText + TextToSpeech)
|
- Voice support (SpeechToText + TextToSpeech)
|
||||||
|
- Errors are explained
|
||||||
|
|
||||||
### Planned
|
### Planned
|
||||||
- API access (save your API tokens for various services in a `.env` file, and the bot will be able to find out e.g. the weather.)
|
- API access (save your API tokens for various services in a `.env` file, and the bot will be able to find out e.g. the weather.)
|
||||||
|
@ -17,8 +18,25 @@ Never, ever run the bot with administrator permissions. You should always make s
|
||||||
Additionally, never ever, give others access to the sandbox features! Malicious actors could use this as a remote code execution.
|
Additionally, never ever, give others access to the sandbox features! Malicious actors could use this as a remote code execution.
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
✅ Debian-Based Linux Distros (such as Mint 20.2)
|
✅ Debian-Based GNU+Linux Distros (such as Mint 20.2)
|
||||||
|
|
||||||
✅ Windows 10 (and above)
|
✅ Windows 10 (and above)
|
||||||
|
|
||||||
✅ MacOS (probably - testers needed!)
|
✅ MacOS (probably - testers needed!)
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
### `AttributeError: Could not find PyAudio; check installation`
|
||||||
|
```
|
||||||
|
pip install pipwin
|
||||||
|
pipwin install pyaudio
|
||||||
|
```
|
||||||
|
|
||||||
|
Debian-based GNU+Linux:
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo apt-get install python3-pyaudio
|
||||||
|
```
|
||||||
|
|
||||||
|
## Example tasks
|
||||||
|
- what wifi am I connected with on Linux
|
||||||
|
-
|
Loading…
Reference in a new issue