我一直在使用以下conda和python版本:

conda版本:4.6.14

conda构建版本:3.17.8

python版本:3.7.3.final.0

我以以下方式安装了simpletransformers:

conda create -n simpletransformers python pandas tqdm
conda activate simpletransformers

conda install pytorch cpuonly -c pytorch
conda install -c anaconda scipy
conda install -c anaconda scikit-learn
pip install transformers
pip install seqeval
pip install tensorboardx

pip install simpletransformers


之后,我一直在尝试导入分类模型,但运气不佳:

import simpletransformers


我收到以下错误:

ModuleNotFoundError:没有名为“ simpletransformers”的模块

有人可以指出我要去哪里了吗?我使用PyCharm作为我的IDE。

最佳答案

从“ https://pypi.org/project/simpletransformers/#files”下载.whl文件


打开命令提示符
输入pip install "path/simpletransformers-0.13.2-py3-none-any.whl" and hit enter
检查软件包是否已安装。
请注意,simpletransformers需要Python'> = 3.6'

10-08 12:47