-
Notifications
You must be signed in to change notification settings - Fork 0
Frequent Errors
At this page you can find common errors raised by Parcks. Is your error not listed? Then feel free to open an issue.
We have seen this issue while installing Parcks on Debian. You can solve it by installing
setuptools: apt install -y python-setuptools.

- The current user is not in the sudoers file. This is visible in at the first line after the prompt for the sudo password.
This error will be thrown if there is no installation file provided to Parcks. Make sure you called Parcks with the -i installation_file.parcks option.
Every parcks installation file requires the *.parcks extension. When this requirement is not met, this error will be thrown.
Although the error message is a bit misleading, this has nothing to do with an unexisting file.
Note that the last line of the stack trace points to
subprocess.
This error most of the times means that you don't have sudo installed. You can verify this by typing sudo pwd, when sudo is not installed you will see the following output:
You can solve this error by installing sudo. (Debian-based: su - ; apt install -y sudo).