python在使用MySQLdb模組時報Can't extract file(s) to egg cacheThe following error occurred while trying to extract file(s) to the Python eggcache的錯誤。

來源:互聯網
上載者:User

標籤:os   使用   檔案   資料   on   c   linux   資料庫   sql   

這個是因為python使用MySQLdb模組與mysql資料庫互動時需要一個地方作為cache放置暫存的資料,但是調用python解譯器的使用者(常常是伺服器如apache的www使用者)對於cache所指向的位置沒有存取權限。

解決方式有很多,這裡介紹一個。

建立一個檔案夾並給予該檔案夾對應使用者w的許可權(不確定是哪個使用者的情況下可以直接給other置以w許可權(linux下使用者及許可權機制自行百度))。

然後在每個python的指令檔中加入

import os
os.environ[‘PYTHON_EGG_CACHE‘] = ‘cache檔案夾的路徑‘

即可。

python在使用MySQLdb模組時報Can't extract file(s) to egg cacheThe following error occurred while trying to extract file(s) to the Python eggcache的錯誤。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.