On Mon, 10 Jun 2013 03:19:43 GMT, Greg Knapp wrote:
After installing DUB (
dub-git
on Arch Linux) and specifyingvibe-d
as a dependency of my project inpackage.json
, I randub upgrade
and vibe was installed. However, I can't start vibe by running it in the project root dir, as the bin file isn't found. It's installed local to my user with vibe in~/.dub/packages/vibe-d-0.7.15/bin
This the recommended way to install vibe? How have others installed it so the vibe executable is available?
Why do you need the vibe executable? In general it got replaced with dub, just run your project with:
dub --rdmd
and you should be fine. Apart from that, if you really want to run it you'll have to the path to your PATH variable your self or specify the full path on the command line.
Best regards,
Robert