python orange3_anaconda安装orange过程(data mining framework,支持python语言)

秦炜
2023-12-01

1、conda create -n orange3 python=3.5 创建一个环境

2、activate orange3 激活orange环境

3、conda config --add channels conda-forge

4、(1)conda install orange3

或者(2)pip install orange3

如果上面两种方法由于网络问题老是出现Readtime out 的情况,可以试试第三种方法

(3)下载orange依赖包对应的whl文件(符合相应的python版本),然后依次pip install whl文件(如:pip install AnyQt-0.0.8-py2.py3-none-any.whl),最后,下载Python Package Index链接里面的orange3的whl文件,pip install *.whl 即可

依赖包:

5、测试是否安装成功

(orange3) C:\*** >python

Python 3.5.3 | packaged by conda-forge | (default, Feb 9 2017, 15:12:38) [MSC v.1900 64 bit (AMD64)] on win32

Type "help", "copyright", "credits" or "license" for more information.

>>> import Orange

>>>

安装成功

 类似资料: