to do it manually under pretty much all the skill files, I deleted the ones copies not under /opt
Ive since lost the output but it was successful, although i did so under user not .venv
Is that a standalone pi installation? I was hoping to perfect my install on my ubuntu desktop and transfer the set up to other devices.
This is what shows for debug on every skill
Establishing Mycroft Messagebus connection...
20:24:32.708 | WARNING | 23789 | ConfigurationSkill | Failed to update settings, will retry later
20:24:49.576 | ERROR | 23789 | mycroft.skills.settings:_issue_api_call:306 | Failed to upload skill settings meta for mycroft-pairing|21.02
Traceback (most recent call last):
File "/home/sean/mycroft-core/mycroft/skills/settings.py", line 304, in _issue_api_call
self.api.upload_skill_metadata(self.settings_meta)
File "/home/sean/mycroft-core/mycroft/api/__init__.py", line 371, in upload_skill_metadata
return self.request({
File "/home/sean/mycroft-core/mycroft/api/__init__.py", line 64, in request
return self.send(params)
File "/home/sean/mycroft-core/mycroft/api/__init__.py", line 147, in send
return self.get_response(response, no_refresh)
File "/home/sean/mycroft-core/mycroft/api/__init__.py", line 170, in get_response
raise HTTPError(data, response=response)
requests.exceptions.HTTPError: {'skill_gid': ['Received skill setting definition before manifest for skill mycroft-pairing|21.02']}
20:24:50.833 | ERROR | 23789 | mycroft.skills.settings:_issue_api_call:306 | Failed to upload skill settings meta for mycroft-joke|21.02
Traceback (most recent call last):
File "/home/sean/mycroft-core/mycroft/skills/settings.py", line 304, in _issue_api_call
self.api.upload_skill_metadata(self.settings_meta)
File "/home/sean/mycroft-core/mycroft/api/__init__.py", line 371, in upload_skill_metadata
return self.request({
File "/home/sean/mycroft-core/mycroft/api/__init__.py", line 64, in request
return self.send(params)
File "/home/sean/mycroft-core/mycroft/api/__init__.py", line 147, in send
return self.get_response(response, no_refresh)
File "/home/sean/mycroft-core/mycroft/api/__init__.py", line 170, in get_response
raise HTTPError(data, response=response)
requests.exceptions.HTTPError: {'skill_gid': ['Received skill setting definition before manifest for skill mycroft-joke|21.02']}
20:24:50.998 | ERROR | 23789 | mycroft.skills.settings:_issue_api_call:306 | Failed to upload skill settings meta for fallback-query|21.02
Traceback (most recent call last):
File "/home/sean/mycroft-core/mycroft/skills/settings.py", line 304, in _issue_api_call
self.api.upload_skill_metadata(self.settings_meta)
File "/home/sean/mycroft-core/mycroft/api/__init__.py", line 371, in upload_skill_metadata
return self.request({
File "/home/sean/mycroft-core/mycroft/api/__init__.py", line 64, in request
return self.send(params)
File "/home/sean/mycroft-core/mycroft/api/__init__.py", line 147, in send
return self.get_response(response, no_refresh)
File "/home/sean/mycroft-core/mycroft/api/__init__.py", line 170, in get_response
raise HTTPError(data, response=response)
requests.exceptions.HTTPError: {'skill_gid': ['Received skill setting definition before manifest for skill fallback-query|21.02']}
20:24:51.011 | ERROR | 23789 | mycroft.skills.settings:_issue_api_call:306 | Failed to upload skill settings meta for mycroft-reminder|21.02
This is not correct. Please don’t pile confusion onto confusion.
Onto the repeated Exceptions: There seems something fundamentally wrong with your setup. I would advise starting from scratch using default setup options and work your way up from there.
@S_Murphy - thanks for the input on lsskills. I believe I see the problem in the code I provided to try to help the community. Here is the bash function to list skills:
```function listSkills()
{
local filterClause="" # no search filter
if [ ${#pattern} != 0 ]; then # search pattern passed in
filterClause="| grep $pattern" # add search filter
fi
if [ "$skillsType" = all ]; then # show all skills
output=`mycroft-msm list 2> /dev/null | sort`
elif [ "$skillsType" = installed ]; then # show just skills installed
output=`mycroft-msm list 2> /dev/null | grep installed | sort`
else # assume 'unistalled'
output=`mycroft-msm list 2> /dev/null | grep -v installed | sort`
fi
} # listSkills()
The function expects that mycroft-msm is in your PATH, but it is not. So one workaround is to set your PATH environment variable to include the directory where mycroft-msm resides. @S_Murphy could you please try this?
But let me float an idea to the Mycroft techies - could the Mycroft executables at least add symlinks for all Mycroft commands to /usr/local/sbin at install time? That would be in keeping with the Linux Filesystem Hierarchy Standard, and would obviate the need for users to set their PATH correctly… Just a thought …
mycroft-msm doesnt work for me unless in the .venv. Even then its just msm. I tried to set the path variable as found here, no luck there. I was able to install msm in the /home/mycroft folder, but ran into some issues.
I created my own branch of the mycroft_tools and think i found a fix. Will retry
I installed something incorrectly and broke it, rewriting from the img file for a fresh start. Do I try msm or git for the mycroft-tools? As for the routine skills?
What directories should I be running the install commands in
is there a way to back up my install? I have had to reinstall the os twice now.
I installed something incorrectly and broke it … I have had to reinstall the os twice now.
Only twice? You’re not even getting warm yet :)) Please try a few more installs. Practice makes perfect … the key I have found, is to update your notes as to what you did … then after 5 or 7 or 9 or even 11 tries, you start to get to a document that is worthwhile … then you throw it out and start again with a different premise …