0
votes
3answers
439 views

Python: module not found after manual install

I've recently updated to the current version of Ubuntu, 13.04 and Python 2.7.4. Since then I have problems importing the gobject module and dunno what to do to fix it. I'd like to use dreampie which ...
3
votes
1answer
53 views

Is there a standard package that provide latitude/longitude functions in python?

I'm trying to develop software in python that involves geographic coordinates. I'd prefer to not rely on custom installed software, and only rely on standard packages. So far, I've only found geopy ...
3
votes
1answer
124 views

Why py and not pyc or pyo?

When I install a python deb package, say python-numpy the files are plain python files. How do I tell to the package manager -- that I actually would rather use pyc or even better -- pyo files?
2
votes
0answers
128 views

ubuntugis demands a partial upgrade? Is this safe?

I would like to do some GIS in ubuntu. When I use the repo: sudo apt-add-repository ppa:ubuntugis/ubuntugis-unstable Update manager asks me to do a partial upgrade. The packages it wants to ...
3
votes
1answer
89 views

Python dependencies in Debian packages

I created my first Debian package today by following the accepted answer at this AskUbuntu question. Everything went fine, and it installed properly afterwards. However, my script is written in python ...
1
vote
1answer
339 views

Virtual Packages ; offline installation problem

I have a problem with offline installation of a package. For instance; python-qt4 module requires sip-api-8.1 but it is a virtual package, hence there is no .deb file to install. How can I fix this ...
3
votes
1answer
153 views

How do i tell ubuntu to only install is asked for and do not bring other dependencies which will break the whole system?

How can i only install python-webkit but not other packages? which is showing to install? (no gstreamer*.*, i do not want to have any single files installed in my distro because of GPL license and it ...
2
votes
2answers
207 views

Why can't I log in after unistalling Python 2.7 and installing Python 3?

I uninstalled the Python 2.7 package to try and upgrade to Python 3. I uninstalled Python 2.7, and noticed some of my launcher items were completely gone. At this point I had installed Python 3. Now ...
1
vote
1answer
162 views

How to include locally build Python package system-wide?

For example: I build numpy with Intel MKL libraries and it's available in Python shell, but if I want to install some package from repository that depends on numpy, my build is not considered. What ...
1
vote
2answers
256 views

Build binary deb package from python source

I have created python package (using Ubuntu Quickly) and want to create deb package. Unfortunatelly Quickly builds package with source python files (.py) and I want not to include source files. The ...
0
votes
2answers
2k views

How to install Python package pyzmq properly?

How to install Python paackage pyzmq properly? I searched in Synapic package manager in vain.
0
votes
1answer
203 views

Package PyGTK app with Quickly fails [closed]

So, I have fully functional PyGTK app and I want to package it with quickly since that is the easiest way to do it, and the only logical way, since if someone took efort to implement such tool, why ...
3
votes
1answer
568 views

Installing (or getting working) ironpython

Why has package with ironpython disappeared from repository? I expected, that I would be there. Is there any way to get running ironpython clearly, without compilation from source?
1
vote
2answers
546 views

Installing python-pygments, ImportError

I want tot use pygments in my python app. At first, I installed pygments like this: $sudo python setup.py install --prefix=/usr/local /usr/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown ...
2
votes
3answers
423 views

How can I install python-envisage?

My question is about how I can install Ubuntu 11.10 packages on Ubuntu 10.04. I would like to install python-envisage (4.0.1), but in the Ubuntu 10.04 Software Center there is only python envisage ...
2
votes
1answer
3k views

How do I force apt-get to install a package that will not install due to a bug introduced by Ubuntu 11.10?

Ubuntu 11.10 separated out python-profiler from the Python standard library due to licensing philosophies. (According to what I could Google, correct me if I'm wrong.) This is an active bug since ...
2
votes
1answer
150 views

I can't seem to get any application indicators to show up - why not?

I am trying to run a program that makes use of application indicators - but it isn't working. This could be because I am missing a package (I didn't use the Desktop Installer CD to install Ubuntu - I ...
2
votes
1answer
87 views

What files can I delete to avoid repeating the Python libraries?

I installed SAGE mathematics from binary because there was no package for it in synaptic. From reading on the web I learned that SAGE brings its own python libraries rather than using the ones Ubuntu ...
12
votes
2answers
3k views

Is it possible to install Python 2.5 in 11.04?

I occasionally have to work on some legacy Python code that is run by the Python 2.5 interpreter in production. I'd like to set my development environment up just like production, so I need to install ...
2
votes
1answer
344 views

What's the difference between python-minimal and python-all?

Basically the question. I need to setup an environment that supports tkinter programming in python and maybe some network socket stuff too. I'd also like to emphasize that I need python 3.
21
votes
5answers
12k views

Will python2.7 be available for 10.04 in the future?

Since Ubuntu 10.04 is an LTS release will it support python 2.7 as a default package maintainer version or at least have a python2.7 package in future? Since it will be the last major python 2.x ...
4
votes
1answer
181 views

Trouble creating a package for my PPA

So I tried following the steps here to create a package to upload to my PPA. I ran dh_make and edited the files. However, when my package gets generated by debuild, none of the programs files show up ...