1 Answer
- Newest
- Most votes
- Most comments
0
Hi
It seems that even though you have configured the Paths they have not loaded into your terminal environment.
If you are using Powershell you can use the following command to reload
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
Another way to reload is to simply restart the machine.
Hope this helps
answered 14 days ago
Relevant content
- asked 10 months ago
- asked 18 days ago
- asked 10 months ago
- AWS OFFICIALUpdated 9 months ago
- AWS OFFICIALUpdated 4 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 3 years ago
I restarted the machine, but it didn't help. I don't understand how to translate what you wrote for my situation.