Docker + Boto3 + Python + Vector Seems not finding boto3 #13282
-
I've been trying to add some python libs to vector image as i wanted to run python scripts via vector file. DockerFile:
Built command: Compose.yaml
vector.yaml calls a python script:
test.py:
When i deploy above stack i am always getting below error, any idea?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @satscreate ! You are installing
I believe you want to install the |
Beta Was this translation helpful? Give feedback.
Hi @satscreate !
You are installing
boto3
viapip3
which is Python 3, butpython
is Python 2. I ran yourapt
commands in the container and then:I believe you want to install the
python-is-python3
package so thatpython
ispython3
.