This message was deleted.
# getting-started
s
This message was deleted.
f
also installed pulumi-vsphere module using pip3. I am running this on mac
p
did you install the module inside the pulumi venv?
by default pulumi create a venv but it does NOT install automatically dependencies inside it
Copy code
source venv/bin/activate
pip install pulumi-vsphere

pulumi up
note: you don’t have to activate venv to run
pulumi up
as it automatically uses it (based on config from Pulumi.yaml project file) but it’s required to install depedencies
when you said you used
pip3
, I’m afraid you install this package globally on your machine and not inside the venv
f
Thank you @prehistoric-activity-61023 Yeah, I had it run globally but not on venv. It works now. 👍 🙂