Update README.md

add-txt2txt-models
Guillermo Rodriguez 2023-05-30 00:41:32 -03:00
parent 40ba84c109
commit e6e3dc2e63
No known key found for this signature in database
GPG Key ID: EC3AB66D5D83B392
1 changed files with 28 additions and 0 deletions

View File

@ -1,2 +1,30 @@
# skynet
### decentralized compute platform
To launch a worker:
```
# create and edit config from template
cp skynet.ini.example skynet.ini
# create python virtual envoirment 3.10+
python3 -m venv venv
# enable envoirment
source venv/bin/activate
# install requirements
pip install -r requirements.txt
pip install -r requirements.cuda.0.txt
pip install -r requirements.cuda.1.txt
pip install -r requirements.cuda.2.txt
# install skynet
pip install -e .
# test you can run this command
skynet --help
# to launch worker
skynet run dgpu
```