Hello, I have deployed a python3.9 function manually. The compressed file contains the main.py and the requirements.txt. When I execute the function form the admin panel I get "ModuleNotFoundError: No module named 'appwrite'". How to fix it?
Did you add the build command to install dependencies?
No what Is the command?
Have a look at this post: https://discord.com/channels/564160730845151244/1162729467777646642
You basically have to add this line to your function in the appwrite.json config file: "commands": "pip install -r requirements.txt"
Recommended threads
- self-hosted auth: /v1/account 404 on saf...
Project created in React/Next.js, Appwrite version 1.6.0. Authentication works in all browsers except Safari (ios), where an attempt to connect to {endpoint}/v1...
- delete document problems
i don't know what's going on but i get an attribute "tournamentid" not found in the collection when i try to delet the document... but this is just the document...
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...