gray-tailor-20387
05/12/2020, 9:41 AMpulumi-docker>=2.0.0,<3.0.0
Then I installed requirements:
pip3 install -r requirements.txt
It seemed to find and install the package fine, and pip3 list
shows "pulumi-docker 2.1.0"
but now when i try to use import pulumi_docker as dock
I get following error: ModuleNotFoundError: No module named 'pulumi_docker'
I feel like I'm missing something stupid, does anyone know what?
edit: I work in a venv like the website suggestedbland-lamp-16797
05/12/2020, 11:23 AMpython3 -c "import pulumi_docker as dock"
does not work, your venv is not configured well...
try to reinstall venv and check if you have python2 mixed with old pip.gray-tailor-20387
05/12/2020, 12:01 PMgentle-diamond-70147
05/12/2020, 3:36 PMpulumi-docker
package in Python. https://github.com/pulumi/pulumi-docker/issues/164gray-tailor-20387
05/12/2020, 7:58 PMgentle-diamond-70147
05/12/2020, 9:28 PM