AirSim
AirSim copied to clipboard
When building the AirSim environment . /setup.sh, I get the following error: E: Package vulkan-utils not found is displayed
Sorry, I just finished setting up UnrealEngine and when I tried to set up AirSim, I got the following error. This error occurred while setting up the environment I'd like to know how to deal with it. E: Package vulkan-utils not found.
@izakisyoutarou Try to install the mesa-vulkan-drivers package: sudo apt install mesa-vulkan-drivers and sudo apt install vulkan-utils
@sandilyasg I tried this. However, when I run sudo apt install valkan-utils, I still get: E: Package vulkan-utils not found. vulkaninfo does show the vulkan instance version:Vulkan Instance Version: 1.3.204 And yet I get that error E: Package vulkan-utils not found. Can you please help me ?
@izakisyoutarou @Aditya12123 are you by chance on Ubuntu 22.04? I had the same problem, I fixed it by running
wget -qO- https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo tee /etc/apt/trusted.gpg.d/lunarg.asc
sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-jammy.list http://packages.lunarg.com/vulkan/lunarg-vulkan-jammy.list
sudo apt update
before setup.sh These commands are from the official Vulkan page: https://vulkan.lunarg.com/doc/sdk/1.3.239.0/linux/getting_started_ubuntu.html
@izakisyoutarou @Aditya12123 are you by chance on Ubuntu 22.04? I had the same problem, I fixed it by running
wget -qO- https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo tee /etc/apt/trusted.gpg.d/lunarg.asc sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-jammy.list http://packages.lunarg.com/vulkan/lunarg-vulkan-jammy.list sudo apt update
before setup.sh These commands are from the official Vulkan page: https://vulkan.lunarg.com/doc/sdk/1.3.239.0/linux/getting_started_ubuntu.html
worked!