Hilal
Hilal

Reputation: 15

Laravel Homestead Installation on Windows

I tried to set up a homestead for my projects, but I get an error during the "vagrant up" command.

My error:

Bringing machine 'homestead' up with 'virtualbox' provider... C:/HashiCorp/Vagrant/embedded/gems/2.2.7/gems/vagrant-2.2.7/plugins/provisioners/file/config.rb:20:in `expand_path': incompatible character encodings: UTF-8 and Windows-1254 (Encoding::CompatibilityError)

I think I get this error because of the character in the user folder. My user folder: "C: \ Users \ Hilal Gür".

How can I solve this problem?

Thank you..

Upvotes: 0

Views: 218

Answers (1)

ThatBuffDude
ThatBuffDude

Reputation: 481

Try changing your folder path

Here's a similar issue to your problem https://github.com/hashicorp/vagrant/issues/3937

The issue looks pretty dead to me, I believe they won't fix it in anytime soon,

I think it's because your directory name has special character in it the "ü" character

Here are my suggestions to your problem:

  • Try changing directory, make sure the full path doesn't have special character in it, maybe try other drive, like D: or E:
  • Try to change your user account

Upvotes: 1

Related Questions