-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong access rights for cdp-1.0.3-py2.7.egg-info/PKG-INFO #21
Comments
eggs.... |
eggs can hatch bugs? |
Hmmm, this might be an issue related to Anaconda. Since you installed pmp on the shared environment, it only gave you permission. It might have even just symbolically linked cdp from your root anaconda env as well (we had a similar permission issue a few weeks ago). I'll investigate further. |
The problem seems to be suspiciously similar to PCMDI/pcmdi_metrics#496 Can you apply the same solution/trick/whatever to the next versions of cdp and all future egg based stuff that might generate the same problem? I have just checked which files may be affected in a pristine environment (uvcdat 2.10 with my special sauce) and only the few cdp files have this read permission problem
|
@zshaheen cdp is still the only package with permissions problems in 2.12
|
@zshaheen I have just stumbled on an interesting cdp-related side effect
I'm maintaining a multi-user distribution of uv-cdat (with multiple versions of uv-cdat as well) and when one of my users tried to launch spyder, she got a huge traceback ending with
IOError: [Errno 13] Permission denied: '/home/share/unix_files/cdat/miniconda2/envs/cdatm15/lib/python2.7/site-packages/cdp-1.0.3-py2.7.egg-info/PKG-INFO'
Turns out that the PKG-INFO file was indeed only readable for me
Problem was solved with a simple
chmod a+r cdp-1.0.3-py2.7.egg-info/PKG-INFO
Can you change that in the (next) official version?
I don't know why spyder got there. Maybe it was scanning the content of
python2.7/site-packages/
...The text was updated successfully, but these errors were encountered: