serverless-python-starter icon indicating copy to clipboard operation
serverless-python-starter copied to clipboard

Unable to link dependency 'bin' because a file by the same name exists in this service

Open tomermes opened this issue 6 years ago • 0 comments
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

tomermes avatar Nov 30 '18 11:11 tomermes