我已经安装了Git, VirtualBox and Vargant on my Windows 10
台计算机。
使用git-bash控制台启动Vargant时遇到问题。
当我执行 vargant init
时 - 这会创建vargant文件并且看起来没问题。
Alex@DESKTOP MINGW64 /d/shell
$ vagrant init hashicorp/precise32
A `Vagrantfile` has been placed in this directory. You are now
ready to `vagrant up` your first virtual environment! Please read
the comments in the Vagrantfile as well as documentation on
`vagrantup.com` for more information on using Vagrant.
但是当我尝试使用 vagrant up
命令启动流浪汉时,我收到错误。
Alex@DESKTOP MINGW64 /d/shell
$ vagrant up
bash: vagrant: command not found
我尝试重新启动,重新安装这些软件,安装最新版本或上一代版本的软件 - 没有任何帮助 - 仍然是bash: vagrant: command not found
。
我接下来要做什么样的shell才能解决问题?
答案 0 :(得分:2)
命令/程序名称为vagrant
,而不是vargant
。你在init中正确拼写它,但你的其他例子拼写错误。尝试运行vagrant up
,您应该全部设置。