I am struggling to deploy a Python WorkerRole on Microsoft Azure. Has anybody successfully gotten a Python process working on Microsoft Azure?
Microsoft seems to be telling people that their documentation related to Python on Azure is out of date, see https://azure.microsoft.com/en-us/documentation/articles/cloud-services-python-ptvs/#comment-2790110068 and https://github.com/Microsoft/PTVS/issues/1447.
A Microsoft employ told me that I need to install my own Python interpreter when I deploy a WorkerRole. Does anybody know how to do that?
My worker.py file consists solely of $print("in the worker".format(datetime.now()))
after I deploy the WorkerRole the following error is in both the ConfigureCloudService.err and LaunchWorker.err.
gi : Cannot find path 'E:\approot\%INTERPRETERPATH%' because it does not exist.
At E:\approot\bin\ConfigureCloudService.ps1:189 char:15
+ Set-Alias py (gi $interpreter_path -EA Stop)
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (E:\approot\%INTERPRETERPATH%:String) [Get-Item], ItemNotFoundException
+ FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetItemCommand