当前位置:网站首页>Error: could not find a version that satisfies the requirement xxxxx (from versions: none) solutions
Error: could not find a version that satisfies the requirement xxxxx (from versions: none) solutions
2022-07-07 02:53:00 【How to improve memory?】
Report errors :
ERROR: Could not find a version that satisfies the requirement tensorboard==1.14.0 (from versions: none)
ERROR: No matching distribution found for tensorboard==1.14.0
WARNING: The repository located at pypi.tuna.tsinghua.edu.cn is not a trusted or secure host and is being ignored. If thi
s repository is available via HTTPS we recommend you use HTTPS instead, otherwise you may silence this warning and allow
it anyway with '--trusted-host pypi.tuna.tsinghua.edu.cn'.
Solution :
pip install Package name -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
for example :
pip install tensorboard==1.14.0 -i http://pypi.douban.com/simple/
--trusted-host pypi.douban.com
Successful installation ~

Check it with the following command ~
conda list

边栏推荐
猜你喜欢
随机推荐
Django数据库(SQlite)基本入门使用教程
测试优惠券要怎么写测试用例?
MySQL
导数、偏导数、方向导数
Difference and the difference between array and array structure and linked list
Apifox, is your API interface document rolled up like this?
Rethinking of investment
Fundamentals of process management
Code debugging core step memory
The panel floating with the mouse in unity can adapt to the size of text content
Work of safety inspection
Oracle中日期的使用方法实例
Here comes a white paper to uncover the technology behind Clickhouse, a node with 10000 bytes!
[leetcode]Search for a Range
你不可不知道的Selenium 8种元素定位方法,简单且实用
QPushButton-》函数精解
Error in fasterxml tostringserializerbase
Kubernetes源码分析(二)----资源Resource
6-6漏洞利用-SSH安全防御
[leetcode]Search for a Range








