lamiastella

termcolor deeplabcut anaconda 3.7

Jul 20th, 2020
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.37 KB | None | 0 0
  1. (base) mona@mona:~$ ipython
  2. Python 3.7.6 (default, Jan 8 2020, 19:59:22)
  3. Type 'copyright', 'credits' or 'license' for more information
  4. IPython 7.16.1 -- An enhanced Interactive Python. Type '?' for help.
  5.  
  6. In [1]: import deeplabcut as dlc
  7. /home/mona/anaconda3/lib/python3.7/site-packages/tensorflow/python/framework/dtypes.py:516: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
  8. _np_qint8 = np.dtype([("qint8", np.int8, 1)])
  9. /home/mona/anaconda3/lib/python3.7/site-packages/tensorflow/python/framework/dtypes.py:517: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
  10. _np_quint8 = np.dtype([("quint8", np.uint8, 1)])
  11. /home/mona/anaconda3/lib/python3.7/site-packages/tensorflow/python/framework/dtypes.py:518: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
  12. _np_qint16 = np.dtype([("qint16", np.int16, 1)])
  13. /home/mona/anaconda3/lib/python3.7/site-packages/tensorflow/python/framework/dtypes.py:519: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
  14. _np_quint16 = np.dtype([("quint16", np.uint16, 1)])
  15. /home/mona/anaconda3/lib/python3.7/site-packages/tensorflow/python/framework/dtypes.py:520: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
  16. _np_qint32 = np.dtype([("qint32", np.int32, 1)])
  17. /home/mona/anaconda3/lib/python3.7/site-packages/tensorflow/python/framework/dtypes.py:525: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
  18. np_resource = np.dtype([("resource", np.ubyte, 1)])
  19. ---------------------------------------------------------------------------
  20. ModuleNotFoundError Traceback (most recent call last)
  21. <ipython-input-1-7dc21562c90f> in <module>
  22. ----> 1 import deeplabcut as dlc
  23.  
  24. ~/anaconda3/lib/python3.7/site-packages/deeplabcut/__init__.py in <module>
  25. 29 mpl.use('Agg')
  26. 30
  27. ---> 31 from deeplabcut import generate_training_dataset
  28. 32 from deeplabcut import refine_training_dataset
  29. 33 from deeplabcut.generate_training_dataset import label_frames, dropannotationfileentriesduetodeletedimages, comparevideolistsanddatafolders, dropimagesduetolackofannotation
  30.  
  31. ~/anaconda3/lib/python3.7/site-packages/deeplabcut/generate_training_dataset/__init__.py in <module>
  32. 17 else:
  33. 18 from deeplabcut.generate_training_dataset.auxfun_drag_label import *
  34. ---> 19 from deeplabcut.generate_training_dataset.labeling_toolbox import *
  35. 20 from deeplabcut.generate_training_dataset.multiple_individuals_labeling_toolbox import *
  36. 21 from deeplabcut.generate_training_dataset.frame_extraction_toolbox import *
  37.  
  38. ~/anaconda3/lib/python3.7/site-packages/deeplabcut/generate_training_dataset/labeling_toolbox.py in <module>
  39. 25 import argparse
  40. 26 from deeplabcut.generate_training_dataset import auxfun_drag_label
  41. ---> 27 from deeplabcut.utils import auxiliaryfunctions
  42. 28 from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas
  43. 29 from matplotlib.backends.backend_wxagg import NavigationToolbar2WxAgg as NavigationToolbar
  44.  
  45. ~/anaconda3/lib/python3.7/site-packages/deeplabcut/utils/__init__.py in <module>
  46. ----> 1 from deeplabcut.utils.make_labeled_video import *
  47. 2 from deeplabcut.utils.auxiliaryfunctions import *
  48. 3 from deeplabcut.utils.video_processor import *
  49. 4 from deeplabcut.utils.plotting import *
  50. 5
  51.  
  52. ~/anaconda3/lib/python3.7/site-packages/deeplabcut/utils/make_labeled_video.py in <module>
  53. 36
  54. 37 from deeplabcut.utils import auxiliaryfunctions
  55. ---> 38 from deeplabcut.pose_estimation_tensorflow.config import load_config
  56. 39 from skimage.util import img_as_ubyte
  57. 40 from skimage.draw import circle_perimeter, circle, line,line_aa
  58.  
  59. ~/anaconda3/lib/python3.7/site-packages/deeplabcut/pose_estimation_tensorflow/__init__.py in <module>
  60. 11 from deeplabcut.pose_estimation_tensorflow.dataset import *
  61. 12 from deeplabcut.pose_estimation_tensorflow.models import *
  62. ---> 13 from deeplabcut.pose_estimation_tensorflow.nnet import *
  63. 14 from deeplabcut.pose_estimation_tensorflow.util import *
  64. 15
  65.  
  66. ~/anaconda3/lib/python3.7/site-packages/deeplabcut/pose_estimation_tensorflow/nnet/__init__.py in <module>
  67. 12
  68. 13 """
  69. ---> 14 from deeplabcut.pose_estimation_tensorflow.nnet.losses import *
  70. 15 from deeplabcut.pose_estimation_tensorflow.nnet.net_factory import *
  71. 16 from deeplabcut.pose_estimation_tensorflow.nnet.pose_net import *
  72.  
  73. ~/anaconda3/lib/python3.7/site-packages/deeplabcut/pose_estimation_tensorflow/nnet/losses.py in <module>
  74. 3 https://github.com/eldar/pose-tensorflow
  75. 4 '''
  76. ----> 5 import tensorflow as tf
  77. 6 vers = (tf.__version__).split('.')
  78. 7 if int(vers[0])==1 and int(vers[1])>12:
  79.  
  80. ~/anaconda3/lib/python3.7/site-packages/tensorflow/__init__.py in <module>
  81. 26
  82. 27 # pylint: disable=g-bad-import-order
  83. ---> 28 from tensorflow.python import pywrap_tensorflow # pylint: disable=unused-import
  84. 29 from tensorflow.python.tools import module_util as _module_util
  85. 30
  86.  
  87. ~/anaconda3/lib/python3.7/site-packages/tensorflow/python/__init__.py in <module>
  88. 71
  89. 72 # Ops
  90. ---> 73 from tensorflow.python.ops.standard_ops import *
  91. 74
  92. 75 # Namespaces
  93.  
  94. ~/anaconda3/lib/python3.7/site-packages/tensorflow/python/ops/standard_ops.py in <module>
  95. 23 import sys as _sys
  96. 24
  97. ---> 25 from tensorflow.python import autograph
  98. 26
  99. 27 # pylint: disable=g-bad-import-order
  100.  
  101. ~/anaconda3/lib/python3.7/site-packages/tensorflow/python/autograph/__init__.py in <module>
  102. 35 from tensorflow.python.autograph import operators
  103. 36 from tensorflow.python.autograph import utils
  104. ---> 37 from tensorflow.python.autograph.core.converter import ConversionOptions
  105. 38 from tensorflow.python.autograph.core.converter import Feature
  106. 39 from tensorflow.python.autograph.impl.api import AutoGraphError
  107.  
  108. ~/anaconda3/lib/python3.7/site-packages/tensorflow/python/autograph/core/converter.py in <module>
  109. 69 from tensorflow.python.autograph.pyct import anno
  110. 70 from tensorflow.python.autograph.pyct import ast_util
  111. ---> 71 from tensorflow.python.autograph.pyct import cfg
  112. 72 from tensorflow.python.autograph.pyct import compiler
  113. 73 from tensorflow.python.autograph.pyct import parser
  114.  
  115. ~/anaconda3/lib/python3.7/site-packages/tensorflow/python/autograph/pyct/cfg.py in <module>
  116. 39 # pylint:enable=g-bad-import-order
  117. 40
  118. ---> 41 from tensorflow.python.autograph.pyct import compiler
  119. 42
  120. 43
  121.  
  122. ~/anaconda3/lib/python3.7/site-packages/tensorflow/python/autograph/pyct/compiler.py in <module>
  123. 33 import gast
  124. 34
  125. ---> 35 from tensorflow.python.autograph.pyct import origin_info
  126. 36
  127. 37
  128.  
  129. ~/anaconda3/lib/python3.7/site-packages/tensorflow/python/autograph/pyct/origin_info.py in <module>
  130. 29 from tensorflow.python.autograph.pyct import ast_util
  131. 30 from tensorflow.python.autograph.pyct import parser
  132. ---> 31 from tensorflow.python.autograph.pyct import pretty_printer
  133. 32 from tensorflow.python.autograph.utils import ag_logging as logging
  134. 33 from tensorflow.python.util import tf_inspect
  135.  
  136. ~/anaconda3/lib/python3.7/site-packages/tensorflow/python/autograph/pyct/pretty_printer.py in <module>
  137. 22 import gast
  138. 23 import six
  139. ---> 24 import termcolor
  140. 25
  141. 26
  142.  
  143. ModuleNotFoundError: No module named 'termcolor'
  144.  
  145. In [2]: quit()
  146. (base) mona@mona:~$ python
  147. Python 3.7.6 (default, Jan 8 2020, 19:59:22)
  148. [GCC 7.3.0] :: Anaconda, Inc. on linux
  149. Type "help", "copyright", "credits" or "license" for more information.
  150. >>>
Add Comment
Please, Sign In to add comment