How to install 3rd party libraries or sdks into the application

I’m trying to install Twilio. I added the the version needed in the requirements.txt as well. But i couldn’t access it. Is there any pipeline setup for installing 3rd party libraries

the requirement will be install in your setup once you install the app. If you have edited the requirement.txt after app installation then you will need to manually install the requirement.

try bench update --requirement
or
~frappe-bench/env/bin/pip install -r apps/your_app/requirement.txt

Thanks, Makarand

2 Likes

Thanks. Its working