I can not Updating registry data #38291
Replies: 4 comments 3 replies
-
I have solved this problem, I directly installed cmsis-toolbox manually and then it's works |
Beta Was this translation helpful? Give feedback.
-
I have the same error with on the same environment. |
Beta Was this translation helpful? Give feedback.
-
I'm having the same problem on Ubuntu 24.02 - every time I open VSCode the following error occurs: Updating registry data from https://github.com/microsoft/vcpkg-ce-catalog/archive/refs/heads/main.zip I can't seem to find any reference to bcee2a60-registry.zip anywhere. Searches only point to this thread. |
Beta Was this translation helpful? Give feedback.
-
My issue occurred on a fresh install of Ubuntu and I did not have the appropriate dependencies installed. A simple |
Beta Was this translation helpful? Give feedback.
-
Recently I am using the extended Arm KEil Pack to develop STM32
Among them I encountered a problem about vcpkg
I am using a 64-bit Ubuntu system: ubuntu 22.04.4
My console output is as follows
Updating registry data from https://github.com/microsoft/vcpkg-ce-catalog/archive/refs/heads/main.zip
failed to download from https://github.com/microsoft/vcpkg-ce-catalog/archive/refs/heads/main.zip
{}
failed to download /home/ubuntu/.vcpkg/downloads/bcee2a60-registry.zip from any source
My vcpkg-configuration.json file is as follows:
{
"registries": [
{
"name": "arm",
"kind": "artifact",
"location": "https://artifacts.tools.arm.com/vcpkg-registry"
}
],
"requires": {
"arm:tools/open-cmsis-pack/cmsis-toolbox": "2.3.0",
"arm:tools/kitware/cmake": "3.28.4",
"arm:tools/ninja-build/ninja": "1.11.1",
"arm:compilers/arm/armclang": "6.22.0",
"arm:debuggers/arm/armdbg": "6.1.1",
"arm:models/arm/avh-fvp": "11.22.39",
"arm:compilers/arm/arm-none-eabi-gcc": "13.2.1",
"arm:compilers/arm/llvm-embedded": "17.0.1",
"arm:tools/arm/uv2csolution": "1.3.0"
}
}
My vcpkg-configuration.json file is as follows:
{
"registries": [
{
"kind": "artifact",
"name": "microsoft",
"location": "https://github.com/microsoft/vcpkg-ce-catalog/archive/refs/heads/main.zip"
},
{
"kind": "artifact",
"name": "arm",
"location": "https://artifacts.keil.arm.com/vcpkg-ce-registry/registry.zip"
}
]
}
I guess it's a network problem, but I can download main.zip directly in the browser, so I rule out the network problem.
How should I solve this problem now?
I see someone has the same problem ,but it is not solved
Beta Was this translation helpful? Give feedback.
All reactions