I am having ModuleError: module not found ‘pycaret’ when I am trying to deploy the ML skill.
The requirements.txt contains the module version.
What are my options since the requirements.txt contains all the dependencies.
I am having ModuleError: module not found ‘pycaret’ when I am trying to deploy the ML skill.
The requirements.txt contains the module version.
What are my options since the requirements.txt contains all the dependencies.
Hey, I apologize. The ML skill is a custom model.
When developing the model, I wanted to use an autoML library (pycaret). When creating the ML skill within the logs it mentions. From pycaret.classification import *
ModuleError: module not found “pycaret”.
However, all the dependencies are listed in the requirements.txt.
Hoping if anyone has encounter similar issues when trying to deploy (make available in AIcenter) an ML skill.
Welcome to the community
Try to run this and check if the requirements are getting installed or not
pip install -r requirements.txt -c constraints.txt
Contraints.txt
itsdangerous<2.1.0
Jinja2<3.0.5
Werkzeug<2.1.0
click<8.0.0
Reference
https://docs.uipath.com/ai-center/automation-cloud/latest/user-guide/building-ml-packages
Cheers