Advertisement
Guest User

Untitled

a guest
Oct 5th, 2016
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.60 KB | None | 0 0
  1. In [1]: import yt
  2. ---------------------------------------------------------------------------
  3. ImportError                               Traceback (most recent call last)
  4. <ipython-input-1-59dfcfe9846c> in <module>()
  5. ----> 1 import yt
  6.  
  7. /Users/molly/yt/yt/__init__.pyc in <module>()
  8.     132
  9.     133 from yt.frontends.api import _frontend_container
  10. --> 134 frontends = _frontend_container()
  11.     135
  12.     136 from yt.frontends.stream.api import \
  13.  
  14. /Users/molly/yt/yt/frontends/api.pyc in __init__(self)
  15.      51         for frontend in _frontends:
  16.      52             _mod = "yt.frontends.%s.api" % frontend
  17. ---> 53             setattr(self, frontend, importlib.import_module(_mod))
  18.      54         setattr(self, 'api', importlib.import_module('yt.frontends.api'))
  19.      55         setattr(self, '__name__', 'yt.frontends.api')
  20.  
  21. /Users/molly/anaconda2/envs/astroconda/lib/python2.7/importlib/__init__.pyc in import_module(name, package)
  22.      35             level += 1
  23.      36         name = _resolve_name(name[level:], package, level)
  24. ---> 37     __import__(name)
  25.      38     return sys.modules[name]
  26.  
  27. /Users/molly/yt/yt/frontends/ramses/api.py in <module>()
  28.      14 #-----------------------------------------------------------------------------
  29.      15
  30. ---> 16 from .data_structures import \
  31.      17       RAMSESDataset
  32.      18
  33.  
  34. /Users/molly/yt/yt/frontends/ramses/data_structures.py in <module>()
  35.      44 from yt.arraytypes import blankRecordArray
  36.      45
  37. ---> 46 from yt.utilities.lib.cosmology_time import \
  38.      47     friedman
  39.      48
  40.  
  41. ImportError: No module named cosmology_time
  42.  
  43. In [2]:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement