OpenSSL has been compiled without RC2 support

记性不好,以此记录日常遇到的问题

问题
原因

研究发现linux的OpenSSL版本过高,已经抛弃了RC2

方法

通过conda进行安装openssl,指定版本

conda install openssl==1.1.1s

于此同时,如果你之前安装了uwsgi,会发现uwsgi会被卸载了。那是因为uwsgi版本过高不支持openssl==1.1.1的版本

可通过conda降低uwsgi版本进行尝试

conda install -c conda-forge uwsgi==2.0.20

注意

1、需要先选择openssl的版本

2、再进行安装uwsgi

如果先安装了uwsgi==2.0.20,会默认选择高版本的openssl,此时再安装低版本openssl,又会卸载了uwsgi,以此反复

出现以下内容,说明安装对了

相关推荐
Ray Liang1 小时前
用六边形架构与整洁架构对比是伪命题?
java·python·c#·架构设计
AI攻城狮1 小时前
如何给 AI Agent 做"断舍离":OpenClaw Session 自动清理实践
python
千寻girling1 小时前
一份不可多得的 《 Python 》语言教程
人工智能·后端·python
AI攻城狮5 小时前
用 Playwright 实现博客一键发布到稀土掘金
python·自动化运维
曲幽5 小时前
FastAPI分布式系统实战:拆解分布式系统中常见问题及解决方案
redis·python·fastapi·web·httpx·lock·asyncio
孟健20 小时前
Karpathy 用 200 行纯 Python 从零实现 GPT:代码逐行解析
python
码路飞1 天前
写了个 AI 聊天页面,被 5 种流式格式折腾了一整天 😭
javascript·python
曲幽1 天前
FastAPI压力测试实战:Locust模拟真实用户并发及优化建议
python·fastapi·web·locust·asyncio·test·uvicorn·workers
敏编程1 天前
一天一个Python库:jsonschema - JSON 数据验证利器
python