`Vagrant Up` does not work in Pycharm

I am trying to configure Vagrant with my project in PyCharm, but I am having a problem. In Preferences > VagrantI set the path to the Vagrant executable (obtained via which vagrant), and I set the instance folder to the root of the project. There is one Vagrant Box ( precise32 (virtualbox)) in the list on the same page.

A Vagrantfile exists in my project, but when I go to Tools > Vagrant > Up, a file dialog box appears, and no matter what I choose next (e.g. Vagrantfile, vagrantexecutable), nothing happens (e.g. the window Rundoes not open).

I looked at different pages in the Pycharm documentation , but that didn't get me any closer to the answer.

How can I make vagrant upwork in Pycharm?

Note. I am using PyCharm 2.7 on Mac 10.7.5 if this helps

+3
source share
1 answer

I had the same problem. Go to SettingsToolsTramp and install an executable Vagrant something like: /usr/local/bin/vagrant. In my case, it looked like somehow these settings were changed to vagrant. After I set the absolute path, everything worked fine again.

+4
source

All Articles