首页 > Python资料 博客日记
【安装tensorflow报错已解决】LibMambaUnsatisfiableError: Encountered problems while solving:
2024-09-16 16:00:07Python资料围观28次
这篇文章介绍了【安装tensorflow报错已解决】LibMambaUnsatisfiableError: Encountered problems while solving:,分享给大家做个参考,收藏Python资料网收获更多编程知识
bug:
在Linux端安装tensorflow报错:LibMambaUnsatisfiableError: Encountered problems while solving:- nothing provides openssl >=1.0.2p,<1.0.3a needed by python-3.7.1-hd75c258_1001
原因:
openssl
版本不匹配:Python 3.7.1 需要特定版本的openssl
,但这些版本在你的当前配置中不可用。- Python 和 TensorFlow 版本冲突:不同版本的 TensorFlow 对 Python 版本有不同的要求,但你的配置似乎无法满足这些要求。
解决方案:
安装与之适配的3.8或者3.9版本的python
conda install python=3.x
我用的是3.8版本,就可以继续安装了。
版权声明:本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!
标签:
相关文章
最新发布
点击排行
- 版本匹配指南:Numpy版本和Python版本的对应关系
- 版本匹配指南:PyTorch版本、torchvision 版本和Python版本的对应关系
- Python 可视化 web 神器:streamlit、Gradio、dash、nicegui;低代码 Python Web 框架:PyWebIO
- 相关性分析——Pearson相关系数+热力图(附data和Python完整代码)
- Python与PyTorch的版本对应
- Anaconda版本和Python版本对应关系(持续更新...)
- Could not build wheels for llama-cpp-python, which is required to install pyproject.toml-based proj
- Python pyinstaller打包exe最完整教程