Page 1 of 1
Exception: No control found for...
Published: October 4, 2016 - 3:49 PM
by sfoy
Hello,
a package installed using the command "WAPT.install_wapt" generates the error:
Exception: No control found for (the name of the package to install).
However, the same package installed directly installs without any problem!
Thank you for your help.
Re: Exception: No control found for...
Published: October 4, 2016 - 4:25 PM
by sfoy
sfoy wrote:Hello,
a package installed using the command "WAPT.install_wapt" generates the error:
Exception: No control found for (the name of the package to install).
However, the same package installed directly installs without any problem!
Thank you for your help.
Additional information is available in the notifications, which will display the following message:
CRITICAL waptservice.py: error 2052
Re: Exception: No control found for...
Published: October 4, 2016 - 6:59 PM
by htouvet
It's better to use install than install_wapt
install_wapt() assumes that the package is already downloaded.
install() takes a package name (or the path to a local .wapt file) as a parameter
Code: Select all
def install():
WAPT.install('monpaquet')
Re: Exception: No control found for...
Published: October 5, 2016 - 12:29
by sfoy
That's what I ended up doing.
htouvet wrote:It's better to use install than install_wapt
install_wapt() assumes that the package is already downloaded.
install() takes a package name (or the path to a local .wapt file) as a parameter
Code: Select all
def install():
WAPT.install('monpaquet')