agreeable-king-2755
03/10/2022, 4:48 PMimport pulumi_docker as docker
I need to follow both below two steps?
Step One:
pulumi plugin install package docker 3.1.0
Step Two:
source venv/bin/activate
pip install pulumi_docker
It's not clear from Lee's message how the automatic thing can happen for Node/Python. He points to a Go script which I can't interpret.billowy-army-68599
03/10/2022, 4:53 PMpip install pulumi_docker
should bring in the binarypulumi plugin install
in rare circumstancessetup.py
for pulumi-docker, it runs it for you: https://github.com/pulumi/pulumi-docker/blob/master/sdk/python/setup.py#L14-L29agreeable-king-2755
03/10/2022, 4:58 PMpulumi plugin install package docker
...and it detects that you're using Python, and does the pip install
for you. (basically inverted from before)
If not, I can open a ticket for this.
It feels cleaner, as you're just using the CLI, and not any of the language-specific tools.
EDIT: let's see how this goes 🙂 https://github.com/pulumi/pulumi/issues/9174billowy-army-68599
03/10/2022, 5:23 PM