I can't update #121
-
I tried to update and followed the steps mentioned here, which are:1- In a command prompt/terminal window you need to move into your alltalk_tts folder and run start_environment.bat or /start_environment.sh to load the Python environment. 2- At the command prompt/terminal, type git pull and wait for it to complete the download.I installed standalone version, but when I type the command Any idea what I am doing wrong here? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 10 replies
-
Hi @TomiTom1234 Within the AllTalk folder, there is a hidden folder Within this folder is all the tracking details it uses for doing anything with git, such as a If that folder is deleted, renamed or corrupted (and you are in the /alltalk_tts/ folder) then you would get the error. So below I did a git pull (ignore my message about committing changes, that's because I changed those files while working on code), but then I renamed the So I guess check that your I'm not sure if you are on Windows or Linux, if you are on Linux, I guess you could try a Thats the first thing to be checking really. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Hi @TomiTom1234
So you would want to do the
git clone
when creating AllTalk, from the word go. Don't use the ZIP file unless you are building on a Headless system with NO internet access.Although the zip file does contain the
github
folder, it appears this doesn't carry the tracking information to say that the files:https://github.com/erew123/alltalk_tts/
This information is only populated/created when you
git clone
the initial build of something onto your computer via thegit
utility. It builds a mini tracking database file that keeps track of all the file versions on your computer and compares them to the files stored up on Github.So you…