Windows - Vagrant and VM Virtual Box
If I use Vagrant Up command, I get an error. "Never run this as root (or with sudo)."
Vagrant file opens with this...
# prevent accidental sudo / root
if Process::uid == 0
puts "Never run this as root (or with sudo)."
exit 1
end
How do I run Vagrant Up and not get this error?
If you
sudo suthen typeexitto get out of sudo.Or if you always use root - create another user on your unix host.