wunki / django-salted

Full stack SaltStack configuration for Django with the help of Vagrant.
BSD 3-Clause "New" or "Revised" License
319 stars 42 forks source link

'fab' is currently not installed #11

Closed zot24 closed 10 years ago

zot24 commented 10 years ago

After run the next command fab vagrant syncdb I receive the following message:

The program fab is currently not installed.  You can install it by typing:
sudo apt-get install fabric

Should be fab installed after run the command vagrant up?

tomleo commented 10 years ago

You must install fabric on your host machine, not the guest VM managed by vagrant.

Doing a pip install -r requirements on your host machine should install fabric for you.

wunki commented 10 years ago

Yes, that should indeed do it. You need fabric python package to rub fab commands.

zot24 commented 10 years ago

Cheers guys!