hh@hh:/home/hh$ python3
Python 3.6.5 (default, Aug 22 2019, 15:58:34)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow as tf
/usr/local/python3/lib/python3.6/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'.
_np_qint8 = np.dtype([("qint8", np.int8, 1)])
/usr/local/python3/lib/python3.6/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'.
_np_quint8 = np.dtype([("quint8", np.uint8, 1)])
/usr/local/python3/lib/python3.6/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'.
_np_qint16 = np.dtype([("qint16", np.int16, 1)])
/usr/local/python3/lib/python3.6/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'.
_np_quint16 = np.dtype([("quint16", np.uint16, 1)])
/usr/local/python3/lib/python3.6/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'.
_np_qint32 = np.dtype([("qint32", np.int32, 1)])
/usr/local/python3/lib/python3.6/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'.
np_resource = np.dtype([("resource", np.ubyte, 1)])
Traceback (most recent call last):
File "", line 1, in
File "/usr/local/python3/lib/python3.6/site-packages/tensorflow/__init__.py", line 35, in
from tensorflow._api.v1 import compat
File "/usr/local/python3/lib/python3.6/site-packages/tensorflow/_api/v1/compat/__init__.py", line 21, in
from tensorflow._api.v1.compat import v1
File "/usr/local/python3/lib/python3.6/site-packages/tensorflow/_api/v1/compat/v1/__init__.py", line 649, in
from tensorflow_estimator.python.estimator.api._v1 import estimator
File "/usr/local/python3/lib/python3.6/site-packages/tensorflow_estimator/__init__.py", line 8, in
from tensorflow_estimator._api.v1 import estimator
File "/usr/local/python3/lib/python3.6/site-packages/tensorflow_estimator/_api/v1/estimator/__init__.py", line 8, in
from tensorflow_estimator._api.v1.estimator import experimental
File "/usr/local/python3/lib/python3.6/site-packages/tensorflow_estimator/_api/v1/estimator/experimental/__init__.py", line 8, in
from tensorflow_estimator.python.estimator.canned.dnn import dnn_logit_fn_builder
File "/usr/local/python3/lib/python3.6/site-packages/tensorflow_estimator/python/estimator/__init__.py", line 25, in
import tensorflow_estimator.python.estimator.estimator_lib
File "/usr/local/python3/lib/python3.6/site-packages/tensorflow_estimator/python/estimator/estimator_lib.py", line 53, in
from tensorflow_estimator.python.estimator.inputs import inputs
File "/usr/local/python3/lib/python3.6/site-packages/tensorflow_estimator/python/estimator/inputs/inputs.py", line 23, in
from tensorflow_estimator.python.estimator.inputs.pandas_io import pandas_input_fn
File "/usr/local/python3/lib/python3.6/site-packages/tensorflow_estimator/python/estimator/inputs/pandas_io.py", line 31, in
import pandas as pd
File "/usr/local/python3/lib/python3.6/site-packages/pandas/__init__.py", line 55, in
from pandas.core.api import (
File "/usr/local/python3/lib/python3.6/site-packages/pandas/core/api.py", line 24, in
from pandas.core.groupby import Grouper, NamedAgg
File "/usr/local/python3/lib/python3.6/site-packages/pandas/core/groupby/__init__.py", line 1, in
from pandas.core.groupby.generic import ( # noqa: F401
File "/usr/local/python3/lib/python3.6/site-packages/pandas/core/groupby/generic.py", line 41, in
import pandas.core.algorithms as algorithms
AttributeError: module 'pandas' has no attribute 'core'
>>>