2

我已经尝试了两天来解决这个问题。我有最新版本的 OSX 和 Homebrew。我遵循了一个让我通过 Homebrew 安装 pip 的教程,然后建议从 Homebrew 安装 Fabric:

brew install Fabric

但是 Fabric 的配方已经从 Homebrew 中消失了。是的,我也进行了更新。所以我遵循了另一个建议我通过 pip 安装的教程。点安装织物

它在涉及 pycrypto 的各种方式中都失败了。这是点子日志。Mac不应该让生活更轻松吗?

status = self.run(options, args)
  File "/usr/local/lib/python2.7/site-packages/pip-1.4-py2.7.egg/pip/commands/install.py", line 241, in run
    requirement_set.install(install_options, global_options, root=options.root_path)
  File "/usr/local/lib/python2.7/site-packages/pip-1.4-py2.7.egg/pip/req.py", line 1277, in install
    requirement.install(install_options, global_options, *args, **kwargs)
  File "/usr/local/lib/python2.7/site-packages/pip-1.4-py2.7.egg/pip/req.py", line 622, in install
    cwd=self.source_dir, filter_stdout=self._filter_install, show_stdout=False)
  File "/usr/local/lib/python2.7/site-packages/pip-1.4-py2.7.egg/pip/util.py", line 670, in call_subprocess
    % (command_desc, proc.returncode, cwd))
InstallationError: Command /usr/local/opt/python/bin/python2.7 -c "import setuptools;__file__='/private/tmp/pip-build-root/pycrypto/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-DDW_Gb-record/install-record.txt --single-version-externally-managed failed with error code 1 in /private/tmp/pip-build-root/pycrypto
4

1 回答 1

3

所以它是:

pip install fabric 

以前它对我不起作用,因为我在 Mac OSX 上,没有人告诉我必须Command Line Tools安装才能在 Mac 上实际做任何有用的事情(这真的应该更好地强调,因为我直到 12 月才最终安装 Fabric由于编译错误,直到我安装了这些工具)。

于 2013-12-16T22:36:40.107 回答