For python functions, how do I ensure dependencies...
# help
a
For python functions, how do I ensure dependencies are deployed? I have boto3 inside a Pipfile and requirements.txt, but I’m seeing
ModuleNotFoundError: No module named 'boto3'
when I call the endpoint provided by
npx sst start
t
When running in local mode all the python code is executing locally. So if you're getting that error it's because your python dependencies aren't available locally
a
Makes sense, thank you!