This worked for me:
- Sign into the Azure portal.
- From the home page, click on subscriptions (near the top).
- Select your subscription.
- On the right-hand side, select, Cancel subscription
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am trying to deploy a dash app using an Azure web app. In my head this should be so straight forward and yet I can't for the life of me figure this out.
demo
.my_group
.I just want the VM that Azure spins up to run the following commands, which work perfectly fine on a local computer:
#!/bin/bash
git clone https://github.com/lina-usc/pylossless.git
cd pylossless
pip install -e .
pip install -e .[dash]
pylossless_qc --filepath assets/test_data/sub-s01/eeg/sub-s01_task-faceO_eeg.edf --disable_buttons
FWIW I have tried putting the above commands into a startup.sh
file in my project root directory (called demo
), set this file as the startup command, and then with azure CLI, ran:
az webapp up --name demo --resource-group my_group --sku B1 --runtime "PYTHON|3.8"
But this returns a zip deployment failed
error and the logs don't give me much information to work off of..
I can't figure out how to do this. What am I missing? Can anyone point me in the right direction?
This worked for me: