apt - Cannot install Nvidia digits - Ask Ubuntu


i trying install nvidia digits in ubuntu 14.04.

i tried install digits entering command

sudo apt-get install digits 

but getting error given below

reading package lists... done building dependency tree reading state information... done e: unable locate package digits 

i tried updating package list , upgrading packages

sudo apt-get update sudo apt-get upgrade 

but not fix problem

any ideas?

nvidia digits isn't available in ubuntu's default repositories. can add ppa (see are ppa's safe add system , “red flags” watch out for?). official installation instructions are:

prerequisites

you need nvidia driver (details , instructions).

run following commands access package repositories:

# access cuda packages cuda_repo_pkg=cuda-repo-ubuntu1404_7.5-18_amd64.deb wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1404/x86_64/${cuda_repo_pkg} -o /tmp/${cuda_repo_pkg} sudo dpkg -i /tmp/${cuda_repo_pkg} rm -f /tmp/${cuda_repo_pkg}  # access machine learning packages ml_repo_pkg=nvidia-machine-learning-repo-ubuntu1404_4.0-2_amd64.deb wget http://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1404/x86_64/${ml_repo_pkg} -o /tmp/${ml_repo_pkg} sudo dpkg -i /tmp/${ml_repo_pkg} rm -f /tmp/${ml_repo_pkg}  # download new list of packages sudo apt-get update 

installation

now have access packages need, installation simple.

sudo apt-get install digits 

through package dependency chains, installs digits, caffe-nv, torch7-nv, libcudnn , many more packages automatically.

the apt source lines added 2 packages are:

deb http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1404/x86_64/ / deb http://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1404/x86_64/ / 

Comments

Popular posts from this blog

download - Firefox cannot save files (most of the time), how to solve? - Super User

windows - "-2146893807 NTE_NOT_FOUND" when repair certificate store - Super User

sql server - "Configuration file does not exist", Event ID 274 - Super User