安装tcn包时出错,导致numpy、keras等不能使用

仅作为记录~~

安装tcn这个包时,导致import numy、import keras出错
具体出现问题如下:

import numpy
import keras
Using TensorFlow backend.

Warning (from warnings module):
File “D:\anzhuanlocation\python361\lib\site-packages\tensorflow\python\framework\dtypes.py”, line 523
_np_qint8 = np.dtype([(“qint8”, np.int8, 1)])
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’.
Warning (from warnings module):
File “D:\anzhuanlocation\python361\lib\site-packages\tensorflow\python\framework\dtypes.py”, line 524
_np_quint8 = np.dtype([(“quint8”, np.uint8, 1)])
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’.
Warning (from warnings module):
File “D:\anzhuanlocation\python361\lib\site-packages\tensorflow\python\framework\dtypes.py”, line 525
_np_qint16 = np.dtype([(“qint16”, np.int16, 1)])
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’.
Warning (from warnings module):
File “D:\anzhuanlocation\python361\lib\site-packages\tensorflow\python\framework\dtypes.py”, line 526
_np_quint16 = np.dtype([(“quint16”, np.uint16, 1)])
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’.
Warning (from warnings module):
File “D:\anzhuanlocation\python361\lib\site-packages\tensorflow\python\framework\dtypes.py”, line 527
_np_qint32 = np.dtype([(“qint32”, np.int32, 1)])
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’.
Warning (from warnings module):
File “D:\anzhuanlocation\python361\lib\site-packages\tensorflow\python\framework\dtypes.py”, line 532
np_resource = np.dtype([(“resource”, np.ubyte, 1)])
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’.

试了很多方法,然并卵~,没有解决
实在没辙了,简单粗暴地重装了Python~~

你可能感兴趣的:(安装tcn包时出错,导致numpy、keras等不能使用)