I am using Python 3.6
and trying to deploy web service on pivotal cloud foundry
.
First of all I was getting an error for pyenchant
, then I came to know that I have to use/install pypiwin32
.
I have not used pywin32
anywhere, I have mentioned pypiwin32
in requirements.txt.
When I run cf push
command to deploy app, it gives me error.
Could not find a version that satisfies the requirement pywin32>=223 (from pypiwin32->-r /tmp/app/requirements.txt (line 230)) (from versions: ) No matching distribution found for pywin32>=223 (from pypiwin32->-r /tmp/app/requirements.txt (line 230)) You are using pip version 18.1, however version 20.0.2 is available. You should consider upgrading via the 'pip install --upgrade pip' command. ERROR Could not install pip packages: could not run pip: exit status 1 Failed to compile droplet: Failed to run all supply scripts: exit status 14 Exit status 223
On local machine, pypiwin32
, pywin32
and pyenchant
got successfully installed but not able to understand why above error is coming while deploying an app.