ModuleNotFoundError: No module named 'flair'
ModuleNotFoundError: No module named 'flair'
我已经通过以下命令安装了 flair 库
!pip install flair
但是当我尝试导入它时,它会生成类似“ModuleNotFoundError: No module named 'flair'”的错误“=12=]
代码:
import torch
import numpy as np
from flair.data import Sentence
from flair.embeddings import TransformerDocumentEmbeddings
通过以下命令安装确保使用 --user 选项,否则您将在 windows 10.
中出现权限错误
!pip install --user flair
安装 flair 后,您必须在 jupyter notebook 中重启内核
我已经通过以下命令安装了 flair 库
!pip install flair
但是当我尝试导入它时,它会生成类似“ModuleNotFoundError: No module named 'flair'”的错误“=12=]
代码:
import torch
import numpy as np
from flair.data import Sentence
from flair.embeddings import TransformerDocumentEmbeddings
通过以下命令安装确保使用 --user 选项,否则您将在 windows 10.
中出现权限错误!pip install --user flair
安装 flair 后,您必须在 jupyter notebook 中重启内核