I am trying to host my application on IBM bluemix. I used a jar in my application and I am trying to connect to an Azure SQL Server database. Therefore, I use Pyodbc for this.
So, in the file requirement.txtthat I gave
pip install pyodbc
as well
pip install flask. These things are installed on my local computer and the application works fine. I get the result from the database.
But when I try to deploy my application on IBM bluemix, when I click on files on the server this gives me an error. I have attached a screenshot of the error below.
The content of the .txt requirement is here.
unixodbc-dev
pyodbc==3.1.1
Flask==0.12.2

source
share