I'm pretty new to Azure and I'm trying to get a Django WebApp up and running. I uploaded the files using FTP, But Azure doesn't run my requirements.txt
.
So I searched for a bit and found out that you can install the requirements.txt
with pip.
Back in Azure, PIP doesn't seem to work. Neither in the Console, The KUDU CMD or the KUDU powershell. Python does work.
When I try to install PIP via Python, it first says that a older version is already installed. When Python tries to upgrade PIP, it doesn't have access to the folder that it needs to edit.
I was wondering how I could use PIP in azure.
(If you know a seperate way to install the requirements.txt
please tell, because this was how I originally came to this point.)
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Django __str__ returned non-string (type NoneType)
- running headless chrome in an microsoft azure web
You won't be able to upgrade the pip of your Django webapp because you will not have access to system files.
Instead you can upgrade pip of your virtualenv, which you can do by adding a line in deploy.cmd file before install requirements.txt command.
env\scripts\python -m pip install --upgrade pip
Remember not to upgrade pip with pip (env/scripts/pip) else it will uninstall global pip.
You can use
pip
by changing the path in console to Python27/ScriptsI suggest you to use Visual Studio 2013/2015 to manage your Django Project. You can get a Visual Studio 2015 Community which is free, and install PTVS 2.2 for it.
With PTVS, you can create a virtual environment with your
requirement.txt
, and deploy your project with Visual Studio. Sometimes, you just cannot install some Python packages due to a compiler issue (some packages specifically need a lower version of compiler). Hence, it's better you compile them in your machine and deploy the virtual environment to Azure Website.See more detail on Django and SQL Database on Azure with Python Tools 2.2 for Visual Studio
Have you tried upgrading pip with easy_install? The following worked for me in Azure kudu console:
python -m easy_install --upgrade --user pip
Based on my understanding, I think you want to create a virtual environment for Python and do some package installation using
requirement.txt
for a Django WebApp and got some issue.For Django on Azure WebApp, I recommend creating a WebApp preinstalled Django from gallery on Azure old portal.
However, arccording to the Azure offical document, you also can't install some packages by using pip, please see these cases below.
But you can refer to the offical troubleshooting doc to deal with this issue, please see https://azure.microsoft.com/en-us/documentation/articles/web-sites-python-create-deploy-django-app/#troubleshooting---package-installation.