Naveen
Naveen

Reputation: 75

How to add Dependency to Azure App service

I have a Spring project and thinking of deploying it in Azure App service.But I need to have python and R server as dependencies.Is it possible to add python and R as extensions in an App Service.

I scrolled through most of the documentation but can't seem to figure out a way to do so.

Edit:
I figured python is present in the virtual mahchine by default and it is possible to add python dependencies.

https://blogs.msdn.microsoft.com/azureossds/2015/06/29/install-native-python-modules-on-azure-web-apps-api-apps/

But I still can't figure out how to install R.

Upvotes: 1

Views: 3508

Answers (1)

AshokPeddakotla
AshokPeddakotla

Reputation: 1038

You can add these extensions for your Web App. Follow the below steps. Select Web App -> Development Tools -> Extensions -> click Add -> Choose the available extensions -> Accept legal terms -> Ok

enter image description here

enter image description here

You can also add these extensions from the Kudu Console.

Select extensions from the gallery and install.

enter image description here

Hope this helps.

Upvotes: 3

Related Questions