2

when I try to install gasp in Ubuntu 12.04 LTS the following error occurs.

student@student-25:~$ sudo apt-get install python-gasp

[sudo] password for student: 

Reading package lists... Done

Building dependency tree       

Reading state information... Done

E: Unable to locate package python-gasp

any help ,please?

ish
  • 141,990
bell
  • 41

2 Answers2

2

Your system is not using the "Universe" repositories. You need to enable the Universe repositories to get python-gasp.

This answer here will explain how to enable those repositories graphically. Once you've enabled them and updated your system with apt-get, you should be able to find that package.

If you are on a command-line-only setup, then I will give you a set of commands to run here, courtesy of bodhi.zazen's answer here.

(1) Edit /etc/apt/sources.list with any editor with superuser powers (for command line, I recommend sudo nano /etc/apt/sources.list, for graphical, gksu gedit /etc/apt/sources.list).

(2) Modify your sources.list file to look similar to this:

###### Ubuntu Main Repos
deb http://us.archive.ubuntu.com/ubuntu/ precise main universe
deb-src http://us.archive.ubuntu.com/ubuntu/ precise main universe

###### Ubuntu Update Repos
deb http://us.archive.ubuntu.com/ubuntu/ precise-security main universe
deb http://us.archive.ubuntu.com/ubuntu/ precise-updates main universe

While this does not put the "Multiverse" repositories in (non-free software), you do not necessarily need Multiverse (if you want it, add "multiverse" to the end of each of the deb lines above.) For whatever archive is there in your current sources.list, use that one instead of the us archives, I'm in the US so I have that in this.

(3) sudo apt-get update to update the repository information

(4) sudo apt-get install python-gasp should now work.

Thomas Ward
  • 78,878
-2

By typing apt-get install you are looking for the package using synaptic package manager.Your output message clearly shows that the package you are looking for doesn't exist in the program.

You have to download the source file of the package and install it.

Download your package from here

Information on how to install a tar.gz file

dlin
  • 3,900