This message was deleted.
# getting-started
s
This message was deleted.
b
Are you installing the dependencies into the automatically created virtual env?
r
To include a new dependency you can either update the
requirements.txt
and run
Copy code
venv/bin/pip install -r requirements.txt
OR you can run
Copy code
venv/bin/pip install [dependency]
Not sure if you're expecting
pulumi refresh
to do the dependency installation for you - but that is not the expected behavior of
refresh
. You can read more about it in the docs here: https://www.pulumi.com/docs/reference/cli/pulumi_refresh/
b
thank you guys 😍
how would the pip instance under
venv
“know” to install it on the Pulumi VM and not locally? 🤔
how can I add that script to Pulumi in order to automatically install the reqs?