》》这个问题解决之后,再双击:双击配置环境,只需配置一次.bat 错误2:could not find a version... 到了这一步,说明虚拟环境ga已经创建好了,只是在安装requirements.txt中的包失败了。此时,只需要换个源重新再尝试安装requirements.txt中的包 失败原因:这个源(图中为清华源)下载不了这个包(geatpy==2.7.0),可以...
针对你提出的错误“error: could not find a version that satisfies the requirement anaconda-clie”,我们可以从以下几个方面进行分析和解决: 确认安装包名称是否正确: 从错误信息来看,你尝试安装的包名为“anaconda-clie”,这显然是一个拼写错误。正确的包名应该是“anaconda-client”。请确认你想要安装的包名是否正...
解决办法:创建一个虚拟虚拟环境,在虚拟环境中安装tensorflow,然后使用pycharm创建项目,指定项目的运行环境为刚才创建的虚拟环境。 一:创建虚拟环境:conda create -n test python=3.5 -n后面是虚拟环境的名字 python=指定虚拟环境使用的python版本 为虚拟环境安装tensorflow: 进入虚拟环境:activate test 升级pip:python -m...
解决办法:创建一个虚拟虚拟环境,在虚拟环境中安装tensorflow,然后使用pycharm创建项目,指定项目的运行环境为刚才创建的虚拟环境。 一:创建虚拟环境:conda create -n test python=3.5 -n后面是虚拟环境的名字 python=指定虚拟环境使用的python版本 为虚拟环境安装tensorflow: 进入虚拟环境:activate test 升级pip:python -m...
安装anaconda后使用pip安装tensorflow找不到包会报如下错误 C:\Users\Z.Y>pip install tensorflowCollectingtensorflowCouldnot find a version that satisfies the requirement tensorflow(fromversions:)Nomatching distribution foundfortensorflow 为什么找不到呢?
最近在下载tensorflow的时候出现了如下图所示的情况:Could not find a version that satisfies the requirement tensorflow 经过一番查找资料,发现,原来在2019年,TensorFlow还不支持python3.7,所以,迫于无奈,我只能乖乖把python的版本退回到3.6版本,具体步骤也很简单。就是打开anaconda prompt ,然后输入conda install python...
Could not find a version that satisfies the requirement opencv-py更改已经创建好anaconda环境的python版本 今天创建了一个3.8的环境准备安装opencv-python==3.4.2.17 结果报错。 最后才知道opencv-python-3.4.2.17最高只支持python3.7,因此3.8及以后版本的python的使用者,使用pip安装这个版本的opencv可能都会报错,只要...
ERROR: Could not find a version that satisfies the requirement torchtoolbox (from versions: none) ERROR: No matching distribution found for torchtoolbox 2023-08-17 回复喜欢 大家好我是匿名君 附议找不到 2024-01-10 回复喜欢 猜测 装不上geatpy,始终提示找不到指定路径怎么搞呢?
anacondapython3.8安装后降级 anacondapython3.8安装后降级⽬录 前⾔ 报错原因 解决⽅法 结束语 前⾔ 给新的环境安装pip install tensorflow,结果报错了。跟着我分析解决⼀波。报错原因 这个红字已经说的很清楚了。ERROR: Could not find a version that satisfies the requirement tensorflow。⾼情商:没...
解决Could not find a version that satisfies the requirement torch==1.4.0 安装torchvision:pip install torchvision 1. 解决方法: pip install torch==1.3.1 -f https://download.pytorch.org/whl/torch_stable.html 1. pip install torchvision==0.4.1 ...