Skip to content Skip to sidebar Skip to footer

-bash: Doc2dash: Command Not Found In OS X Mavericks

I have a two day old Mac Pro with OS X Mavericks and need to get doc2dash working. I've installed Python, pip and doc2dash, but I keep getting the following error when typing 'doc2

Solution 1:

pip install --user installs commands to ~/Library/Python/2.7/bin. Update your .bash_profile to include the line:

export PATH="$HOME/Library/Python/2.7/bin:/usr/local/bin:$PATH"

Then open a new terminal and the shell will be able to find doc2dash.


Post a Comment for "-bash: Doc2dash: Command Not Found In OS X Mavericks"