我是spyder的新手,并试图弄清楚如何安装sklearn_crfsuite。这是我在spyder控制台安装时遇到的错误:
命令: conda安装sklearn_crfsuite
Solving environment: ...working... failed
PackagesNotFoundError: The following packages are not available from current channels:
- sklearn_crfsuite;间谍版本: 3.2.8
有人能帮帮我吗?
发布于 2018-10-17 10:35:12
解决了这个问题。
如果一个软件包无法从conda或Anaconda.org获得,您可能可以找到并安装另一个包管理器(如pip )。
Step 1 : install pip in current conda environment with the command 'conda install pip'
Step 2 : install the required package with the command 'pip install sklearn_crfsuite'
Step-3 : verify package is installed with the command 'conda list'参考资料:https://conda.io/docs/user-guide/tasks/manage-pkgs.html#installing-non-conda-packages
https://stackoverflow.com/questions/52852316
复制相似问题