We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is an issue with incomplete PR resolving #6
In [8]: durolib.cmipBranchTime('ACCESS1-0','historical','r1i1p1') --------------------------------------------------------------------------- IOError Traceback (most recent call last) <ipython-input-8-39b564340367> in <module>() ----> 1 durolib.cmipBranchTime('ACCESS1-0','historical','r1i1p1') anaconda2/envs/cdat80py2/lib/python2.7/site-packages/durolib/durolib.py in cmipBranchTime(model, experiment, r1i1p1) 107 """ 108 # Load dictionary into memory --> 109 cmip5 = json.load(open('CMIP5BranchTimes.json','r')) 110 # Validate user input 111 cm5Models = ['model','ACCESS1-0','ACCESS1-3','BNU-ESM','CCSM4','CESM1-BGC', IOError: [Errno 2] No such file or directory: 'CMIP5BranchTimes.json' In [9]: ls anaconda2/envs/cdat80py2/lib/python2.7/site-packages/durolib/ __init__.py __init__.pyc colourLib.py colourLib.pyc durolib.py durolib.pyc makeStericLib.py makeStericLib.pyc oceanLib.py oceanLib.pyc
The text was updated successfully, but these errors were encountered:
you need the files in your setup.py see the "share" section at: https://github.com/CDAT/vcs/blob/master/setup.py#L37 or https://github.com/PCMDI/pcmdi_metrics/blob/master/setup.py#L137
If you have an "Egg" you then need to access them as seen at: https://github.com/PCMDI/pcmdi_metrics/blob/master/tests/test_pmp_portraits.py#L12-L14 and https://github.com/PCMDI/pcmdi_metrics/blob/master/tests/test_pmp_portraits.py#L58
if not an egg use: sys.prefix+"share/filename"
Sorry, something went wrong.
Closed by #34
Need to update following the latest Gregory (September 2019) contributions, see PCMDI/pcmdi.github.io#318
No branches or pull requests
This is an issue with incomplete PR resolving #6
The text was updated successfully, but these errors were encountered: