Question about the Okta provider python resource n...
# getting-started
m
Question about the Okta provider python resource not being seen: seems like this should work, I ran
pip install pulumi_okta
but when trying to run a hello world project, this lib is not seen. What am I missing? ModuleNotFoundError: No module named 'pulumi_okta'
b
pulumi creates a venv for you, so try
venv/bin/pip3 install pulumi_okta
you can see where that venv is configured in
Pulumi.yaml
m
thank you, so helpful!
image.png