Starting the VoiceCraft server on Linux. #101
SineVector241
started this conversation in
General
Replies: 1 comment
-
|
New alternative instructions that should be added to the main message: Running with dockerIf you want to use docker instead, then you probably already have docker installed. Images are provided on docker.io and on the github packages, so these would be the 'url' for They both started at ExampleYou can start a server using this command: docker run -d -p 9050:9050 --name voicecraft_server sinevector241/voicecraft:latest
# OR
docker run -d -p 9050:9050 --name voicecraft_server ghcr.io/sinevector241/voicecraft:latestEditing the configIf you need to edit the config, then you can copy the config file to your local machine, edit it, and then upload it again: # Download the file to local folder
docker cp voicecraft_server:config/ServerProperties.json .
# Edit the file using your editor (mine is nano)
nano ServerProperties.json
# Once you're done, upload it again and restart the server
docker cp ServerProperties.json voicecraft_server:config/ServerProperties.json
docker restart voicecraft_server |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
sudo apt-get install dotnet-runtime-8.0(ubuntu)dotnet VoiceCraft.Server.dllShould run if nothing goes wrong.
Beta Was this translation helpful? Give feedback.
All reactions