-bash:doc2dash:在OS X Mavericks中找不到命令 [英] -bash: doc2dash: command not found in OS X Mavericks

查看:109
本文介绍了-bash:doc2dash:在OS X Mavericks中找不到命令的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有两天大的Mac Pro,带有OS X Mavericks,需要运行 doc2dash

I have a two day old Mac Pro with OS X Mavericks and need to get doc2dash working.

我已经安装了Python,pip和doc2dash,但是在终端机中键入"doc2dash"时仍然出现以下错误.

I've installed Python, pip and doc2dash, but I keep getting the following error when typing "doc2dash" in Terminal.

-bash: doc2dash: command not found

这是我的.bash_profile文件的外观:

# Set architecture flags
export ARCHFLAGS="-arch x86_64"
# Ensure user-installed binaries take precedence
export PATH=/usr/local/bin:$PATH
# Load .bashrc if it exists
test -f ~/.bashrc && source ~/.bashrc


#[[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile

#[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*

##
# Your previous /Users/USERNAME/.bash_profile file was backed up as /Users/USERNAME/.bash_profile.macports-saved_2014-03-08_at_02:37:54
##

# MacPorts Installer addition on 2014-03-08_at_02:37:54: adding an appropriate PATH variable for use with MacPorts.
#export PATH=/opt/local/bin:/opt/local/sbin:$PATH
# Finished adapting your PATH environment variable for use with MacPorts.

根据评论进行了

哪个doc2dash

which doc2dash

不返回任何内容.

当我运行'sudo pip install --user doc2dash'时,出现以下内容:

When I run 'sudo pip install --user doc2dash', the following appears:

Requirement already satisfied (use --upgrade to upgrade): doc2dash in /Users/USERNAME/Library/Python/2.7/lib/python/site-packages
Cleaning up...

当我在上面的目录中列出doc2dash文件时,将显示以下内容:

When I list the doc2dash files in the directory above, this is what appears:

drwxr-xr-x   9 USERNAME  staff  306 Mar  8 02:28 doc2dash
drwxr-xr-x   9 USERNAME  staff  306 Mar  8 02:28 doc2dash-1.2.0.dist-info

doc2dash不在/usr/local/bin中.

doc2dash does not reside in /usr/local/bin.

有人可以告诉我如何执行此命令吗?

Can someone please tell me what to do in order to get this command to work?

推荐答案

pip install --user将命令安装到~/Library/Python/2.7/bin.更新您的.bash_profile以包括以下行:

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"

然后打开一个新终端,外壳程序将能够找到doc2dash.

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

这篇关于-bash:doc2dash:在OS X Mavericks中找不到命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆