I download the sdk, I run the install but nothing happends…
The file that i download is : sdkmanager_0.9.12-4180_amd64.deb
I tryed this but without sucess:
$ sudo apt install ./sdkmanager_0.9.12-4180_amd64.deb
[sudo] password for hache:
Reading package lists… Done
Building dependency tree
Reading state information… Done
Note, selecting ‘sdkmanager:amd64’ instead of ‘./sdkmanager_0.9.12-4180_amd64.deb’
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
sdkmanager:amd64 : Depends: libgconf-2-4:amd64 but it is not installable
Depends: libcanberra-gtk-module:amd64 but it is not installable
Depends: locales:amd64 but it is not installable
E: Unable to correct problems, you have held broken packages.
I have tried that too and failed to install sdkmanager on the jetson nano as well. I assume that Nvidia wants us to install the sdk on other more powerful computer and program the jetson nano from there by using the network. After the discovery, I tried to install the sdk on a newly configured computer for Ubuntu OS and successfully installed the sdkmanager. Unfortunately, when I tried to run Nsight eclipse program, the error message showed up and still can’t figure it out what the problem is. I will be very happy to get a solution for the problem that I am having.
“apt” is a front end for “dpkg” package tool (apt makes dpkg smarter). However, apt uses package names from repositories, whereas dpkg uses files. So try as a file instead:
sudo dpkg -i ./sdkmanager_0.9.12-4180_amd64.deb
(a “.deb” is part of a file name…the package name is usually some subset of the file name without the “.deb”)
I have faced the same problem:
sudo dpkg -i ./sdkmanager_0.9.12-4180_amd64.deb
dpkg: error: cannot access archive ‘./sdkmanager_0.9.12-4180_amd64.deb’: No such file or directory
and when I try:
sudo apt install ./sdkmanager_0.9.13-4763_amd64.deb
Reading package lists… Done
Building dependency tree
Reading state information… Done
Note, selecting ‘sdkmanager:amd64’ instead of ‘./sdkmanager_0.9.13-4763_amd64.deb’
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help resolve the situation:
The following packages have unmet dependencies:
sdkmanager:amd64 : Depends: libgconf-2-4:amd64 but it is not installable
Depends: libcanberra-gtk-module:amd64 but it is not installable
Depends: locales:amd64 but it is not installable
E: Unable to correct problems, you have held broken packages.
Verify that first you are in the same directory where ‘./sdkmanager_0.9.12-4180_amd64.deb’ is at. This requires you to cd there first. If this shows the file, then the dpkg command should work. You wouldn’t use apt to install a dpkg file directly. Something like:
cd ~/where/ever/it/is
ls ./sdkmanager_0.9.12-4180_amd64.deb
# If that shows the file:
sudo dpkg -i ./sdkmanager_0.9.12-4180_amd64.deb
Prior to doing this I’d recommend making sure currently installed packages are ready (there might not be anything “broken”, but it won’t hurt to make sure):
sudo apt update
sudo apt --fix-broken install
sudo apt-get install libgconf-2-4 libcanberra-gtk-module
sudo apt-get install python
If you come up with checksum errors, then you should see this URL regarding a bug in a recent Ubuntu bzip2 update:
https://devtalk.nvidia.com/default/topic/1056381/jetson-agx-xavier/jetpack-4-2-xavier-install-failed/
Once those are all in place try the “dpkg” command again. Make sure the actual file name for sdkmanager matches the one you are using.