首页 > 编程语言 >error NU1301: Failed to retrieve information about 'volo.abp.cli' from remote source '

error NU1301: Failed to retrieve information about 'volo.abp.cli' from remote source '

时间:2022-12-17 16:59:55浏览次数:64  
标签:cli volo abp source https error

today i come across an error when install the abp from the command line

     

 

 after refer to https://github.com/abpframework/abp/issues/2003

I do below test

1. use   dotnet tool install -g Volo.Abp.Cli --ignore-failed-sources   

    

 

 and the abp will be successed installed

    

 

 2. use  dotnet tool uninstall -g Volo.Abp.Cli   to unistall abp

open Visual studio > Tools > Options > Nuget Packages Manager > Package sources

uncheck all items except the nuget.org 

    

 

this setting is actually saved in the file  C:\Users\Gavin\AppData\Roaming\NuGet\NuGet.Config

     

 

 then install the abp again and this time it does not have error  

    

 

 

reference

https://blog.walterlv.com/post/add-custom-nuget-source

标签:cli,volo,abp,source,https,error
From: https://www.cnblogs.com/cg6811568/p/16989161.html

相关文章

  • eclipse导入maven工程项目
    点击File,点击import搜索maven,双击 填入项目所在地址,找到pom.xml文件所在的目录  finish即可。......
  • Presenting action sheet clipped by its superview
    Presentingactionsheetclippedbyitssuperview.Somecontrolsmightnotrespondtotouches.OniPhonetry-[UIActionSheetshowFromTabBar:]or-[UIActionSheetshowF......
  • 0基础→自动化测试框架实现:java + testng + httpclient + allure
    必备基础java基础配置文件解析(properties)fastjson的使用(处理json字符串、json数组)jsonpath的使用java操作excel(通过POIHttpClient的使用(get、post请求)TestNG用法 自动化测......
  • Clickhouse 基础知识
    Clickhouse是一个用于联机分析处理(OLAP)的列式数据库管理系统(columnarDBMS)。传统数据库在数据大小比较小,索引大小适合内存,数据缓存命中率足够高的情形下能正常提供服务。但......
  • IDEA入门级使用教程----你怎么还在用eclipse?
    上个月,idea的使用量超越eclipse的消息席卷了整个IT界,idea到底好在哪里呢?最智能的IDEIDEA相对于eclipse来说最大的优点就是它比eclipse聪明。聪明到什么程度呢?我们先来看几个......
  • Linux 安装 Clickhouse
    下载:https://packagecloud.io/Altinity/clickhousewget--content-dispositionhttps://packagecloud.io/Altinity/clickhouse/packages/el/7/clickhouse-server-common-2......
  • eclipse使用git提交项目
    eclipse使用git提交项目有2种方式:一种是git命令窗口,另一种是eclipse自带git插件(跟svn插件一样使用)一、使用git命令窗口提交项目1.首先官网下载git并安装,然后配置用户信息(任......
  • ClickHouse 挺快,esProc SPL 更快
    开源分析数据库ClickHouse以快著称,真的如此吗?我们通过对比测试来验证一下。ClickHousevsOracle先用ClickHouse(简称CH)、Oracle数据库(简称ORA)一起在相同的软硬件环境下做......
  • 使用this.$refs.xxx.clientWidth获取不到对象,报错Cannot read properties of undefine
    根据搜索结果显示,有几种可能1、组件使用了懒加载。  排除这种可能2、组件上使用了v-for.v-if等。经判断,是这个问题 ......
  • Eclipse rcp使用代码显示/隐藏视图(view)
    1/**2*显示视图3*@paramid视图ID4*/5publicstaticvoidshowView(Stringid){6if(id==null||id.trim().equals("")){7return;......