我在mac OS X Yosemite上工作,版本10.10.3。

我使用macport安装python2.7和pip http://johnlaudun.org/20150512-installing-and-setting-pip-with-macports/

我可以成功地安装包,并在我的python环境和python脚本中导入它们。但是,无法在终端的命令行中找到与包关联的任何可执行文件。

有人知道哪里出了问题吗?(详情见下文)

例如,在http://wiki.ros.org/jade/Installation/Source中安装名为“rosdep”的软件包时

我可以运行:sudo pip install -U rosdep 安装没有错误,相应的文件位于/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages

但是,如果我尝试运行:sudo rosdep init, 它给出了一个错误:“sudo: rosdep:命令未找到”

这不是特定于包的错误。对于在我的计算机上使用pip安装的任何包,我都会得到这个。我甚至试着加上

/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages

到我的$PATH。 但是在命令行中找不到可执行文件,即使包在python中完美地工作。


当前回答

当你使用MacOS安装程序(从Python网站下载)安装Python或Python3时,它会在你的~/中添加一个导出器。配置脚本。你要做的就是找到它的来源。重新启动所有终端也可以达到目的。

警告——我认为最好在Python3中使用pip3 -为了将来的好处。

如果你已经安装了Python3,以下步骤在macOS Mojave上对我有效:

首先使用sudo - sudo - h pip3 Install ansible安装ansible 创建一个指向Python bin路径的符号链接

sudo ln -s /Library/Frameworks/Python.framework/Versions/Current/bin /Library/Frameworks/Python.framework/current_python_bin . sudo ln -s /Library/Frameworks/Python.framework/current_python_bin . txt

把它钉在。profile上

导出路径= $路径:/图书馆/框架/ Python.framework / current_python_bin

执行source ~/。配置并重新启动所有终端外壳。 键入ansible——version

其他回答

macOS Monterey也有同样的问题。我必须修改.bash_profile文件并添加以下条目

export PATH="~/Library/Python/3.8/bin:$PATH"

macOS Monterey上的默认python版本是3.8,但你必须仔细检查你的python版本,以确保你使用的是正确的版本

除了将python的bin目录添加到$PATH变量中,我还必须更改该目录的所有者,以使其工作。不知道为什么我还不是老板。

chown -R ~/Library/Python/

检查你的$PATH

Tox有一个命令行模式:

audrey:tests jluc$ pip list | grep tox
tox (2.3.1)

它在哪里?

(编辑:2.7的东西在这里不太重要,在任何3。X和pip的行为几乎是一样的)

audrey:tests jluc$ which tox
/opt/local/Library/Frameworks/Python.framework/Versions/2.7/bin/tox

和什么是在我的$PATH?

audrey:tests jluc$ echo $PATH
/opt/chefdk/bin:/opt/chefdk/embedded/bin:/opt/local/bin:..../opt/local/Library/Frameworks/Python.framework/Versions/2.7/bin...

注意/opt/local/Library/Frameworks/Python.framework/Versions/2.7/bin?这样才能找到我安装的东西

现在,要查看Python中的内容,请尝试这样做(用rosdep代替tox)。

$python
>>> import tox
>>> tox.__file__

打印出来:

'/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/tox/__init__.pyc'

现在,cd到上面的lib上面的目录。你看到bin目录了吗?你在箱子里看到罗斯戴普了吗?如果是这样,尝试将bin添加到您的$PATH。

audrey:2.7 jluc$ cd /opt/local/Library/Frameworks/Python.framework/Versions/2.7
audrey:2.7 jluc$ ls -1

输出:

Headers
Python
Resources
bin
include
lib
man
share

在默认安装python的macOS上,您需要在$PATH中添加/Users/<you>/Library/ python /2.7/bin/。

把这个添加到你的.bash_profile中:

export PATH="/Users/<you>/Library/Python/2.7/bin:$PATH"

这就是pip安装可执行文件的地方。

提示:对于非默认的python版本,请找到python安装的位置并替换上面路径中的该部分。(谢谢你的提示,Sanket_Diwale)

在Windows上,你需要添加路径%USERPROFILE%\AppData\Roaming\Python\Scripts到你的路径中。