hey guys. how to avoid the creation of the new pyt...
# python
b
hey guys. how to avoid the creation of the new python venv, using
pulumi new
if I already have it? https://www.pulumi.com/docs/reference/cli/pulumi_new/
Copy code
-g, --generate-only             Generate the project only; do not create a stack, save config, or install dependencies
I need to create a stack, save config, I just need not to create the venv automatically
g
The
-g
flag you mentioned is the best option. You can
pulumi new aws-python -g
then
pulumi stack init
and
pulumi config set ...
to create the stack and save conig.
b
thank you @gentle-diamond-70147