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 -->
<clear />
<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="GalleryV2" value="https://gallery.uipath.com/api/v2" />
<add key="GalleryV3" value="https://gallery.uipath.com/api/v3/index.json" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="UiPathVisualstudio" value="https://uipath.pkgs.visualstudio.com/Public.Feeds/_packaging/UiPath-Official/nuget/v3/index.json" />
<add key="UiPathOfficialSignedPackages" value="https://pkgs.dev.azure.com/uipath/Public.Feeds/_packaging/UiPath-Official/nuget/v3/index.json" />
<add key="UiPathOfficialUS" value="https://pkgs.dev.azure.com/uipath-us/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.
Adding UiPathVisualstudio, UiPathOfficialSignedPackages, and UiPathOfficialUS to NuGet Package Manager Package Sources fixed NU1101: Unable to find UiPath.Activities.API for me. Thank you!