skip to Main Content

Debian – Linux no module named azure.iot.hub

I'm having an issue trying to execute a very simple python script that works perfectly in Windows but not on my Le Potato (Debian): import uuid from azure.iot.hub import IoTHubRegistryManager import MqttClient as mqttClient CONNECTION_STRING = "HostName=(...)" DEVICE_ID = "(...)"…

VIEW QUESTION

docker file pip install locally

this is my docker file: WORKDIR /scan RUN pip install pymongo RUN pip install netmiko RUN pip install pyats[full] ENV Testbed= ENV arr= # ENV device= # ENV id= COPY . /scan ENTRYPOINT ["python3", "main.py"] I want to pip install…

VIEW QUESTION
Back To Top
Search