Reputation: 311
istioctl command not found in windows 10 even though i have added the path
'C:\Users\NSPC\Documents\istio\istio-1.1.8\bin' in environment variables.
Upvotes: 2
Views: 3839
Reputation: 14084
Go to https://github.com/istio/istio/releases and under Istio version download *.zip version for windows (if is not visible expand "Assets"). Currently it is Istio 1.1.9 and name of the file is istio-1.1.9-win.zip
Unpack this file.
Go to istioctl.exe
(i.e C:\Users\%USERNAME%\istio-1.1.9-win\bin). Make sure in bin directory is executable file. If its not there, you should download different version.
Search "Edit environment variables for your account"
Click on the "Path" variable and then use "Edit...". You cannot create new Path variable, you must edit already existed.
Click on "New" and paste path to exe file: C:\Users\%USERNAME%\istio-1.1.9-win\bin
In command prompt check Istio version $ istioctl version
Upvotes: 4