在 Mac 上安装 Pytz

在 Mac 上安装 Pytz

有人能告诉我如何在 Mac 上安装 Pytz 吗?我无法让简易安装正常工作。它给我一个错误,说我没有使用管理员帐户,但我确实有。

谢谢

这是我收到的错误:

error: can't create or remove files in install directory

The following error occurred while trying to add or remove files in the
installation directory:

    [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/test-easy-install-2030.write-test'

The installation directory you specified (via --install-dir, --prefix, or
the distutils default setting) was:

    /Library/Python/2.7/site-packages/

Perhaps your account does not have write access to this directory?  If the
installation directory is a system-owned directory, you may need to sign in
as the administrator or "root" account.  If you do not have administrative
access to this machine, you may wish to choose a different installation
directory, preferably one that is listed in your PYTHONPATH environment
variable.

For information on other options, you may wish to consult the
documentation at:

  http://peak.telecommunity.com/EasyInstall.html

Please make the appropriate changes for your system and try again.

答案1

错误消息会告诉您到底出了什么问题、该如何处理以及在哪里可以找到更多文档。您到底对哪部分不理解,例如:

也许您的帐户没有该目录的写权限?

不存在“管理员帐户”。存在“管理员用户”这种东西。但管理员用户无权在磁盘上随意乱涂乱画。这是为了防止您意外弄坏自己的系统。

有一个帐户,有权在磁盘上随意书写(并可以赋予自己任何它没有的权限)。但那不是你。没有 Unix、Mac 或其他系统会让你以 root 身份运行以进行正常操作。相反,它们提供和等工具,sudosu你仅在需要时以 root 身份运行。

这就是为什么教程easy_install告诉你这样做:

sudo easy_install pytz

如果你是管理员用户,并且你没有搞乱你的设置,那么你可以运行 下的任何程序sudo。它会要求你输入密码,然后它会暂时成为 root 并运行该程序。

相关内容