I'd like to provision and connect to virtual machine using Vagrant and Cmder. Unfortunately, when I try to vagrant up my machine, I'm getting error that I don't use Power Shell:
λ vagrant up
5
Vagrant failed to initialize at a very early stage:
The version of powershell currently installed on this host is less than
the required minimum version. Please upgrade the installed version of
powershell to the minimum required version and run the command again.
Installed version: N/A
Minimum required version: 3
What I tried so far was:
- Choose Power Shell type of terminal (both default and admin mode)
- Run cmder as Administrator and try again (1)
- Try solution Cmder Powershell ignores profiles
- Try solution How do I update Cmder to use PowerShell Core
Any ideas what else I can do? I use Windows 10 and with normal windows cmd I can manage of vagrant withou issues, although cmd is not Powershell
When I run $PSVersionTable (in PowerShell mode) I get following result:
λ $PSVersionTable
Name Value
PSVersion 5.1.18362.1593
PSEdition Desktop
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
BuildVersion 10.0.18362.1593
CLRVersion 4.0.30319.42000
WSManStackVersion 3.0
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
But I need to mention that in the same mode when trying to run vagrant commands, the error still appears.