This is my requirements.txt
TypeScript
nltk==3.8.1
re==2.2.1
pandas==1.5.2```
And my Function has failed to deploy
This is the error
```Docker Error: ERROR: Could not find a version that satisfies the requirement re==2.2.1 (from versions: none)
ERROR: No matching distribution found for re==2.2.1
WARNING: You are using pip version 22.0.4; however, version 23.1.2 is available.
You should consider upgrading via the '/usr/builds/runtime-env/bin/python3 -m pip install --upgrade pip' command.
Collecting appwrite==2.0.0
Downloading appwrite-2.0.0.tar.gz (15 kB)
Preparing metadata (setup.py): started
Preparing metadata (setup.py): finished with status 'done'
Collecting nltk==3.8.1
Downloading nltk-3.8.1-py3-none-any.whl (1.5 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.5/1.5 MB 1.1 MB/s eta 0:00:00```
TL;DR
User is asking if there is a list of Python libraries supported/not supported by appwrite. They mention that pandas is not supported and ask about the 're' package. They provide their requirements.txt file which includes 're==2.2.1' and 'pandas==1.5.2'. They also mention that their function failed to deploy, showing an error related to the 're' package.
Solution: The 're' package is a built-in package in Python and does not need to be installed separately. The error message suggests that the specified version of 're' (2.2.1) is not available🧐 what the heck is the re package?
Also pandas is not supported. Why do you need it?
Is there a way I can see list of python libraries supported/ not supported by appwrite?
We don't have an exhaustive list
Recommended threads
- Production down - createExecution return...
Hey, Since 1.9.6 rollout in fra (~17:00 UTC, 14 Aug), POST /v1/functions/{functionId}/executions returns a 400 whenever the body includes an empty headers ob...
- CreateRow is doing ListRows on self-host...
### setup ``` appwrite 1.9.5 self-hosted bun 1.3 node-appwrite 27.1.0 ``` ### issue Im running a function on a self hosted 1.9.5 with "node-appwrite": "^27.1.0...
- Local function execution results in HTTP...
Hi all, I'm trying to develop a new function on my Ubuntu 24.04 machine running the latest version of docker. I've read through the documentation to install and...