裝完 mysql-python 報錯 [Errno 13] Permission denied: '/root/.python-eggs'
阿新 • • 發佈:2019-02-01
裝完 mysql-python 報如下錯誤
Can't extract file(s) to egg cache
The following error occurred while trying to extract file(s) to the Python
egg
cache:
[Errno 13] Permission denied: '/root/.python-eggs'
The Python egg cache directory is currently set to:
/root/.python-eggs
Perhaps your account does not have write access to this directory? You
can
change the cache directory by setting the PYTHON_EGG_CACHE environment
variable to point to an accessible directory.
還嘗試去改 /root/.python-eggs 目錄的許可權 ,沒有結果
後來改了下apache 的http.config 檔案,改掉PYTHON_EGG_CACHE的位置
<Location /projects/myproject>
SetHandler mod_python
PythonHandler trac.web.modpython_frontend
PythonOption TracEnv /var/trac/myproject
PythonOption TracUriRoot /projects/myproject
SetEnv PYTHON_EGG_CACHE /tmp/trac-eggs
</Location>
再建立/tmp/trac-eggs 目錄,再給上許可權,搞定