Hi to all,
i had to split this topic in to 3 parts because of the images limitation per post (noob restrictions applied)
I will try do describe the problems that i faced, while installing the parrot-groundsdk repo workspace to my ubuntu VM.
The steps i took are the following :
- Create a VM with ubuntu 18.04.6
- Install python 3.6.9 and python 2.7.17
- Install curl and repo
- Configure the email and name (for git)
- Execute the instractions for cloning the parrot-groundskd according to the instructions of the official document https://developer.parrot.com/docs/olympe/installation.html
When executing the following command
repo init -u https://github.com/Parrot-Developers/groundsdk-manifest.git
i get the following error
File "~/code/parrot-groundsdk/.repo/repo/main.py", line 79
file=sys.stderr)
^
SyntaxError: invalid syntax
To solve this problem, i followed this link https://forum.developer.parrot.com/t/olympe-repo-wont-link/12608
and execute the following commands.
$ mkdir -p ~/.bin
$ PATH="${HOME}/.bin:${PATH}"
$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/.bin/repo
$ chmod a+rx ~/.bin/repo
I repeated the installation by executing the following commands :
$ cd $HOME
$ mkdir -p code/parrot-groundsdk
$ cd code/parrot-groundsdk
$ pwd
~/code/parrot-groundsdk
$ repo init -u https://github.com/Parrot-Developers/groundsdk-manifest.git
$ repo sync
- After executing the
repo sync
command,
i get the following error :
i run again the command with the suggested parameters as follows
repo sync -j1 --fail-fast