Good morning,
I’m creating an online application in Python in a notebook using the “voici” interface.
This application offers widgets that interact with a database.
Locally, my interface works: it modifies the online database.
When I upload this application to Github, on a template “voici”, I must provide the dependencies in the environment.yml file.
This is where a problem is generated: the server tells me that there is no mysql-connector-python module…?
Here is the content of my yml file:
"name: voici
channels:
- emscripten-forge
- conda-forge
dependencies: - mysql-connector-python
-ipywidgets - xeus-python
- pandas <2"
Is there another way to install this module in the environment “voici” ?
Thank U for any help.