```(venv) C:\Users\perry\dev\pulumi>pulumi up P...
# python
f
Copy code
(venv) C:\Users\perry\dev\pulumi>pulumi up
Previewing update (dev):

     Type                 Name            Plan     Info
     pulumi:pulumi:Stack  gcp-python-dev           1 error

Diagnostics:
  pulumi:pulumi:Stack (gcp-python-dev):
    error: Failed to locate 'python3' on your PATH. Have you installed Python 3.6 or greater?
s
It looks like some tool for some reason is looking for
python3
in your PATH. What do you get running
which python3
?
f
Copy code
(venv) C:\Users\perry\dev\pulumi-ts>where python3
INFO: Could not find files for the given pattern(s).
s
I was asking for linux/bash
which
to find out if
python3
is already in your path
f
This is all on Windows
s
Running
python3 --version
also will confirm if this executable is available
f
I don't seem to have python3, python is 3.7
Copy code
(venv) C:\Users\perry\dev\pulumi>python3 --version
'python3' is not recognized as an internal or external command,
operable program or batch file.

(venv) C:\Users\perry\dev\pulumi>python --version
Python 3.7.0
Maybe I can alias python3 to python...
s
Yeah, that should work
I was trying to remember how to do that in Windows, but that was ages ago
f
That didn't work -
Copy code
python3 --version
now works fine but
Copy code
pulumi up
still looking specifically in the path. I'm switching to Ubuntu on Windows now...
s
🤔 ok, good luck
f
That worked fine. I think there's still some bugs for pulumi SDK on windows. I've found using the Ubuntu Windows Subsystem solves most problem - all CLI instantly works fine 😁
👍 1