在 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 身分運作來進行正常操作。相反,他們提供了sudo和等工具su,讓您僅在需要時以 root 身份運行。

這就是為什麼教學easy_install告訴你這樣做:

sudo easy_install pytz

如果您是管理員用戶,並且沒有搞砸您的設置,則可以運行sudo.它會詢問你的密碼,然後它會暫時成為 root 並運行該程式。

相關內容