试了好多次下载安装包的方法安装tensorflow,安装过程中显示tensorflow安装完成但是import的时候出现numpy里面的错误。
尝试了各种方法,在tensorflow上,比如pip install tensorflow,conda install 等多次重新安装
也更新了numpy的版本,还是不行
tensorflow其中的.py文件出现错误:
_NON_AUTOPACKABLE_TYPES = set(np.core.numerictypes.ScalarType)
Module ‘numpy.core’ has no attribute ‘numerictypes’
在Anaconda Prompt上重新输入以下代码,在tensorflow原有的环境中再次安装tensorflow
conda create -n tf tensorflow
conda activate tf
conda install pip
pip install tensorflow
刷新一下,就成功啦!