Learn how to install k3d with the command sudo apt-get install k3d on Ubuntus.
Ads
Quick installation of k3d:
Step 1: Update system:
sudo apt-get update
Step 2: Install: k3d
Ater updaing the OS run following command to install the packae:
sudo apt-get install k3d
Package Details | |
Package: | k3d |
Version: | 0.8.0.2-15 |
Maintainer: | Ubuntu Developers |
Home page: | http://www.k-3d.org/ |
Description: | 3D modeling and animation system, binary files K-3D is free-as-in-freedom 3D modeling and animation software. It combines flexible plugins with a visualization pipeline architecture, making K-3D a versatile and powerful tool for artists. . This package contains binaries and libraries. Homepage: http://www.k-3d.org/ |
Distro: | Ubuntu 12.04 LTS |
Release: | |
Repo/Section: | universe/graphics |
First of all update your system with the command:
sudo apt-get update
Ads
Above command will download the package lists for Ubuntu 12.04 LTS on your system. This will update the list of newest versions of packages and its dependencies on your system.
After downloading the latest package list with the help of above you can run the installation process.
If k3d is not installed on your compter then the command 'dpkg -L k3d' will give followin error.
deepak@deepak-VirtualBox:~$ dpkg -L k3d Package `k3d' is not installed. Use dpkg --info (= dpkg-deb --info) to examine archive files, and dpkg --contents (= dpkg-deb --contents) to list their contents. deepak@deepak-VirtualBox:~$
Installing k3d:
After system update use the following command to install k3d:
sudo apt-get install k3d
Above command will confirm before installing the package on your Ubuntu 12.04 LTS Operating System. If you are not already logged in as su, installer will ask you the root password. After completion of the installation you can use the package on your system.
Now we will see the commands for uninstalling the k3d from Ubuntu 12.04 LTS. For uninstalling this package you can easily use the apt command and remove the package from Linux Operating System.
To remove the k3d following command is used:
sudo apt-get remove k3d
Following command is used to remove the k3d package along with its dependencies:
sudo apt-get remove --auto-remove k3d
This will remove k3d and all its dependent packages which is no longer needed in the system.
Completely removing k3d with all configuration files:
Following command should be used with care as it deletes all the configuration files and data:
sudo apt-get purge k3d
or you can use following command also:
sudo apt-get purge --auto-remove k3d
Above command will remove all the configuration files and data associated with k3d package. You can can't recover the delete data, so, use this command with care.