Hey I've been trying to add Python 3.3 to windows powershell by repacing 27 with 33 in the path.
I tried to post a screenshot but turns out I need 10 rep so I'll just copy and paste what I've attempted:
[Enviroment]::SetEnviromentVariable("Path", "$env:Path;C:\Python33", "User")
>
[Enviroment]::SetEnviromentVariable("Path", "$env:Path;C:\Python33")
>
[Enviroment]::SetEnviromentVariable("Path", "$env:Path;C:\Python33\python.exe", "User")
>
[Enviroment]::SetEnviromentVariable("Path", "$env:Path;C:\Python33;C:\Python33\Scripts", "User")
>
[Enviroment]::SetEnviromentVariable("Path", "$env:Path;C:\Python33\", "User")
The path to the folder where python.exe resides is: C:\Python33
Somewhere I'm doing something wrong but am not sure where. Help a fellow out with his foray into programming?
Thanks.