Estou tendo erro de encoding ao executar o vagrant up:
c:\vagrant\musicjungle>vagrant up Bringing machine 'web' up with 'virtualbox' provider... ==> web: Importing base box 'hashicorp/precise32'... C:/HashiCorp/Vagrant/embedded/gems/2.2.5/gems/childprocess-0.6.3/lib/childprocess/windows/process_builder.rb:43:in `join': incompatible character encodings: Windows-1252 and UTF-8 (Encoding::CompatibilityError)
Estou usando Windows 10, Virtualbox 6 e Vagrant 2.2.5
Meu arquivo Vagrantfile está assim:
Vagrant.configure("2") do |config|
config.vm.box = "hashicorp/precise32"
config.vm.define :web do |web_config|
web_config.vm.network "private_network", ip: "192.168.50.10"
end
end