ubuntu安装python环境scikit-learn低版本
ubuntu安装python环境scikit-learn低版本
Ubuntu默认使用的是python3.8,要安装插件需要先安装几个依赖包
安装uwsgi需要安装gcc python3.8-dev python-dev
安装scikit-learn旧版本需要安装python3-sklearn python3-sklearn-lib这两个包,python3.8支持最早的版本是scikit-learn==0.24.2
官网给出的解决办法是安装支持就版本的依赖包scikit-learn==0.24.2
apt install python3.8-venv 虚拟环境包
apt-get install python3-sklearn python3-sklearn-lib 安装scikit-learn旧版本依赖包