I am trying to install on a Linux WebApp - python 3.7 - with django
it is Linux web app with PYTHON 3.7 hosted inside a B1 App Service Plan
I am not using Docker - I am using a requirements.txt file. The deployment is successful and I can open my site.
When I use the SSH window to use my virtual environment, I run the pip install of requirements file.
This is the only item in my requirements file that doesn't install.
mysqlclient=1.4.6
I get an error saying:
error: command 'gcc' failed with exit status 1
ERROR: Failed building wheel for mysqlclient
here is the screenshot:
I then changed the requirement file to includ ggc as a requirement and tried again. Again I got errors. See below screenshots:

Just to also say that I am not using Docker. I am deploying from github, so all my dependencies are in the requirements file only. Is there any way that I can install mysqlclient in the Virtual environment using a requirements file?