Back
How to enable Python Machine Learning Packages Installation in Self Hosting for function execution?
- 0
- Self Hosted
- Functions
I want to test Image Processing Libraries of Python but by default it is not supported. Is there any way to enable them.
TL;DR
The user is having trouble installing Pandas and Numpy for Python machine learning packages in a self-hosted environment. One suggestion given is to update the commands used for installation. It is recommended to add the following commands:
```shell
apk add --no-cache g++ wget && pip install -r requirements.txt
```
The user is asked about the specific error they are encountering and what they are trying to use. They mention that they want to test image processing libraries in Python, but it is not supported by default. They ask if there is a way to enable these libraries. A solution to enable image processing libraries is not provided inAre you on 1.4?
Yes
as part of the build commands you can install other things as needed.
What you trying to use and what error are you getting?
I am unable to install Pandas and Numpy
try updating your commands to:
TypeScript
apk add --no-cache g++ wget && pip install -r requirements.txt
Recommended threads
- After a GET request is passed to functio...
Create execution in the console can normally retrieve the get parameters。WHy?
- function subdomain ssl certs
The generated subdomain isn't getting a valid ssl cert, I was wondering if appwrite automatically generates one or uses a wildcard for *.functions.domain.com? ...
- Whats best practise for Appwrite Cloud?
Appwrite Teams map very nicely to my needs, it is how i group users together. ... I use roles to define permissions. Should I also map a table to each team ? ...