Export to GitHub

pyodbc - issue #314

Permission denied on python-eggs folder


Posted on Mar 28, 2013 by Quick Wombat

I've written a script, using pyodbc, that's used by multiple users. The problem is that when the ~/.python-eggs folder is created at run-time, the permissions are not correct:

drw-rw-r-- 2 joe users 4.0K Mar 28 09:34 .python-eggs/

Directories need to have execution permissions. This cases this error:

import pyodbc File "build/bdist.linux-x86_64/egg/pyodbc.py", line 7, in <module> File "build/bdist.linux-x86_64/egg/pyodbc.py", line 4, in bootstrap File "/software/Python/272/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg/pkg_resources.py", line 882, in resource_filename ) File "/software/Python/272/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg/pkg_resources.py", line 1351, in get_resource_filename last = self._extract_resource( File "/software/Python/272/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg/pkg_resources.py", line 1406, in _extract_resource

File "/software/Python/272/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg/pkg_resources.py", line 928, in extraction_error

pkg_resources.ExtractionError: 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: '/home/joe/.python-eggs/pyodbc-3.0.6-py2.7-linux-x86_64.egg-tmp/tmpAu8lcr.$extract'

The Python egg cache directory is currently set to:

/home/joe/.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.

I've seen a similar issue logged before, but it was 3 years ago, so have raised a new one.

Comment #1

Posted on Mar 28, 2013 by Quick Wombat

Just to add, if I chmod -R 770 the directory, I can use the tool fine. It's just annoying that I'd have to do this for every user. I've also checked the permissions in Python's site-packages and there doesn't appear to be a problem (all 775).

Comment #2

Posted on Jun 11, 2014 by Grumpy Rabbit

I ran into the same problem. Has it been solved yet?

Comment #3

Posted on Jun 11, 2014 by Quick Wombat

Comment deleted

Comment #4

Posted on Jun 11, 2014 by Quick Wombat

Don't think so! I moved to pypyodbc.

Comment #5

Posted on Jun 11, 2014 by Grumpy Rabbit

OK, going to take a look at pypyodbc

Status: New

Labels:
Type-Defect Priority-Medium