I am unable to install the package can any one help
Thanks in advance
P.Srujana
I am unable to install the package can any one help
Thanks in advance
P.Srujana
Hi @srujana13a5
Can you provide more information
Studio version, package name and version things like that?
Regards
Gokul
are you able to find package on manager? please install related package from package manager, match package release date with your version and install lower.
Cause: The failed package cannot be found in any available sources in NuGet.config file from C:\Program Files\UiPath\Studio\NuGet.config (Studio/Robot installation folder).
Solution: As the KMParseXML seems to be a custom library, make sure that you added it firstly in the Local path or in the Orchestrator Host/Tenant libraries section or make sure that you are providing the correct source address in the NuGet.config file.
Example of NuGet.config file:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!-- Add this repository to the list of available repositories -->
<add key="Local" value="./Packages" />
<add key="MyGetOrg" value="https://www.myget.org/F/workflow/" />
<add key="MyGetV3" value="https://pkgs.dev.azure.com/uipath/Public.Feeds/_packaging/UiPath-Official/nuget/v3/index.json" />
<add key="Marketplace" value="https://gallery.uipath.com/api/v2" />
<add key="MarketplaceV3" value="https://gallery.uipath.com/api/v3/index.json" />
<add key="UiPath Packages" value="https://packages.uipath.com/activities" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="UiPath Official" value="https://uipath.pkgs.visualstudio.com/Public.Feeds/_packaging/UiPath-Official/nuget/v3/index.json" />
<add key="SignedPackages" value="https://pkgs.dev.azure.com/uipath/Public.Feeds/_packaging/UiPath-Official/nuget/v3/index.json" />
<!--<add key="SharedLocation" value="\\LAPTOP-8FPMPMND\NugetPackages" />-->
</packageSources>
<config>
<add key="signatureValidationMode" value="accept" />
</config>
</configuration>
Let us know if this helped you.
@marian.platonov’s response is dead on. However, even after reading it we didn’t really “get” the solution.
The key phrase was “in the Orchestrator Host/Tenant libraries section”. In our case, we needed to add the custom library to our Cloud Tenant, but we did not have an option to manually ‘Upload’ a Library.
That fix was easy. We had to change the default option for Library Feeds at the Tenant level (Tenant | Settings | Deployment | Libraries) from ‘Only host feed’ to ‘Both host and tenant feeds’.
After updating that Tenant setting, we were able to manually upload our custom library and then bot was able to download it without the NU1101 error.
we had issues because the secure deployment option was set, not the API key.