As title says I want to install and use flask[async] (pip install flask[async]) on my project, I tried to add it in the toml file but it didn't work, so for now I'm using import os os.system('pip install flask[async]')
at the beginning of my main file.
The question is how can I add it to toml file myself?
Install flask[async]
As title says I want to install and use flask[async] (
pip install flask[async]
) on my project, I tried to add it in the toml file but it didn't work, so for now I'm usingimport os
os.system('pip install flask[async]')
at the beginning of my main file.
The question is how can I add it to toml file myself?
os.system