This message was deleted.
# getting-started
s
This message was deleted.
👍 1
b
Hi @salmon-sandwich-15994 - why are you running:
Copy code
pulumi up <https://github.com/pulumi/examples/tree/master/azure-py-aci>
?
The order you’re running commands in isn’t best practice.
Copy code
pulumi new python-azure
pulumi config set azure-native:location westus2
pulumi up
s
When using a template, what pulumi command should I use? I thought I was supposed to use pulumi up passing in the template as an argument. What should I do instead? What is the correct syntax?
b
pulumi up
executes your pulumi code that you’ve written
pulumi new
is the command you want to use to specify a template
what you’re passing isn’t a template url though, it’s an example
s
Like this?
Copy code
pulumi new python-azure
pulumi config set azure-native:location westus2
pulumi new <https://github.com/pulumi/examples/blob/master/azure-py-aci/__main__.py>
pulumi up
b
no, you cannot pass the url you’re passing
that url isn’t a template, you’ll have to copy and paste the code you want into your program