做Nimenyi test结果的可视化,需要安装Orange包。此处记录安装过程。
1、conda create -n orange3 python=3.7 创建一个orange环境
2、conda activate orange3激活环境
3、conda config --add channels conda-forge
4、pip install orange3
出现错误:
ERROR: Could not build wheels for orange3, which is required to install pyproject.toml-based projects
解决方法:
①Orange3 · PyPI下载Orange3-3.36.2-cp311-cp311-win_amd64.whl
②安装pip install D:\Orange3-3.36.2-cp39-cp39-win_amd64.whl
在这一步安装出现错误:
ERROR: Orange3-3.36.2-cp311-cp311-win_amd64.whl is not a supported wheel on this platform.
原因:下载安装的包不是当前平台所支持的,版本不匹配(参考解决pip安装报错:is not a supported wheel on this platform-优快云博客)
解决方法:查看了自己的环境适配的包版本
pip debug --verbose
选择了cp37安装:
5、测试安装是否成功: