首页 > 其他分享 >测试

测试

时间:2023-02-23 20:22:52浏览次数:25  
标签:测试 pip3.6 root grpcio 1.48 install tools

 

 

[root@iZbp15hgmnt51ifjsheh9gZ ~]# whereis pip
pip: /usr/bin/pip3.6
[root@iZbp15hgmnt51ifjsheh9gZ ~]# pip3.6 install grpcio-tools==1.48.2
WARNING: Running pip install with root privileges is generally not a good idea. Try `pip3.6 install --user` instead.
Collecting grpcio-tools==1.48.2
  Could not find a version that satisfies the requirement grpcio-tools==1.48.2 (from versions: )
No matching distribution found for grpcio-tools==1.48.2
[root@iZbp15hgmnt51ifjsheh9gZ ~]# pip3.6 install grpcio\-tools==1.48.2
WARNING: Running pip install with root privileges is generally not a good idea. Try `pip3.6 install --user` instead.
Collecting grpcio-tools==1.48.2
  Could not find a version that satisfies the requirement grpcio-tools==1.48.2 (from versions: )
No matching distribution found for grpcio-tools==1.48.2
[root@iZbp15hgmnt51ifjsheh9gZ ~]# pip3.6 install "grpcio-tools==1.48.2"
WARNING: Running pip install with root privileges is generally not a good idea. Try `pip3.6 install --user` instead.
Collecting grpcio-tools==1.48.2
  Could not find a version that satisfies the requirement grpcio-tools==1.48.2 (from versions: )
No matching distribution found for grpcio-tools==1.48.2

  

标签:测试,pip3.6,root,grpcio,1.48,install,tools
From: https://www.cnblogs.com/lianshanspeak/p/17149278.html

相关文章

  • fields设计与测试
     菲尔兹管理用例一、向开发找到需求ID需求设计文档ID二、在fields的需求列表中,填入ID,创建计划1、状态:测试接手2、日期:冒烟日期,测试日期3、可能遇到的问题:*......
  • 权威的软件测试外包公司有哪些?简析软件测试外包的好处
    随着人们对软件产品的需求越来越多,市场上的软件系统层出不穷,软件企业在产品质量问题上十分重视。因此专业的软件测试外包公司就成为了很多个人或企业或事业单位的首选,那......
  • 移动全平台性能测试神器PerfDog
    一、APP性能测试背景在任何软件的测试过程中,性能测试都是一个很重要的环节。我们一般所说的性能测试分为客户端及服务器端。针对客户端性能测试,尤其像游戏、视频类的软......
  • 测试公开课资料系列01--Fiddler之AutoResponse在线调试利器
     前言做的技艺来自做的过程。明天晚上,笔者在腾讯课堂开播一堂Fiddler实战公开课,嗯~先预先筹备一些课堂资料给大家来分享一、Fiddler在线调试介绍Fiddler在线调试-->Fid......
  • 月薪过 3w 的 软件测试 员都是怎么做到的?
    对任何职业而言,薪资始终都会是众多追求的重要部分。前几年的软件测试行业还是一个风口,随着不断地转行人员以及毕业的大学生疯狂地涌入软件测试行业,目前软件测试行业“缺口......
  • TDengine 发布主流时序数据库对比分析报告,与 InfluxDB、TimescaleDB 展开全面对比测试
    2月21日,开源、高性能、云原生的时序数据平台TDengine正式发布TDengine3.0性能对比分析报告,该报告从数据写入、压缩和查询等维度,对比了TDengine与市场其他流行的......
  • cmake搭建cpp测试工程
    创建目录结构撰写CMakeLists.txt点击查看代码#cmake需求的最小版本,2和3不兼容#cmake_minimum_required(VERSION3.1)#置工程名称project(HELLO)#设置变量SOU......
  • 虚拟机开启不了测试模式
    win+r,输入:gpedit.msc,打开本地组策略编辑器。用户配置、管理模块、系统、驱动程序安装、设备驱动程序的代码签名、上面选择:已启用,下面选择:忽略。计算机配置、管理模块、......
  • SpringBoot20 - 测试
    测试​ 测试是保障程序正确性的唯一屏障,在企业级开发中更是不可缺少,但是由于测试代码往往不产生实际效益,所以一些小型公司并不是很关注,导致一些开发者从小型公司进入中大......
  • shell中的各种测试语句
    变量测试表达式解释${var:-word}|若var存在且非空,则值为$var;若var未定义或为空值,则值为word,但var的值不变。${var:=word}|若var存在且非空,则值为$va......