serverless-python-starter
serverless-python-starter copied to clipboard
Unable to link dependency 'bin' because a file by the same name exists in this service
trafficstars
I am having an error while running serverless deploy after following the starter instructions.
The error states: Unable to link dependency 'bin' because a file by the same name exists in this service
This is the serverless.yml content:
service: py-server
plugins:
- serverless-python-requirements
custom: pythonRequirements: dockerizePip: false pythonBin: C:\Python27\python
provider: name: aws runtime: python2.7 stage: dev region: us-east-1
functions: query_forest: handler: handler.query_forest events: - http: path: / method: get