Vagrant box could not be found or could not be accessed in the remote catalog - incompatible curl version

后端 未结 5 1447
花落未央
花落未央 2020-11-27 02:52

I just downloaded Vagrant and did the settings as well as install virtual box. I just can\'t start my project (vagrant up). I have a vagrant file and so on. What can I do?

5条回答
  •  悲&欢浪女
    2020-11-27 03:21

    Had a similar problem with Sierra (with additional brew installs - which granted could have an impact).

    Above sudo rm /opt/vagrant/embedded/bin/curl did not work still got: SSLRead() return error -36.

    Tried suggestion from http://slick.pl/kb/software/vagrant-fix-for-error-60-ssl-read/

    Any case:

    cd ~
    cd .vagrant.d/tmp/
    rm -rf ~/.vagrant.d/tmp/
    vagrant box add --insecure laravel/homestead
    

    Installed successfully.

提交回复
热议问题