代码报错failed with initial frozen solve. Retrying with flexible solve.怎么解决
时间: 2023-11-04 21:54:03 浏览: 84
An implementation of SVM+ with MATLAB QP solve.zip
这个错误通常是由于安装的包依赖关系不兼容导致的。可以尝试以下几种解决方法:
1. 更新pip版本: `pip install --upgrade pip`
2. 清除缓存: `pip cache purge`
3. 尝试使用 `--no-cache-dir` 参数重新安装依赖: `pip install --no-cache-dir -r requirements.txt`
4. 如果上述方法都无效,可以考虑使用conda创建虚拟环境并安装依赖:
```
conda create --name myenv
conda activate myenv
conda install --file requirements.txt
```
如果你没有安装conda,可以查看官网安装方法:https://docs.conda.io/projects/conda/en/latest/user-guide/install/
阅读全文