解决问题
SyntaxError: future feature annotations is not defined
解决思路
语法错误:没有定义future feature注释
解决方法
实际上是python版本不对,该语法需要在python3.7以上,而当前版本在python3.6所以导致此错误!文章来源:https://www.toymoban.com/news/detail-796767.html
1、安装python3.7(conda 安装)
conda install python==3.7.0
2、临时将以下注释掉也可以
如果因为无法及时安装,临时将以下注释掉也可以运行当前代码文章来源地址https://www.toymoban.com/news/detail-796767.html
# from __future__ import annotations
到了这里,关于SyntaxError: future feature annotations is not defined的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!