I've been learning python over the past couple of days from Head First Python.
I've reached a point where I have to build a distribution package of a module I've made, called nester, and install it on my system.
I just upgraded to Ubuntu 12.10, am fooling around with some Python code. In earlier releases, I used to be able to do:
import speechd
And now I get that the module does not exist.
I saw a lot of other questions like this but none of them answered the exact part I am having trouble with (actually installing the Python RPM). Someone on my system deleted /usr/bin/python and /usr/bin/python2.4 on my 64 bit CentOS 5.8 installation.
I have a package that depends on an old version of tornado:
[DEFAULT]
Package: tonythepony
Depends: python-tornado (<= 1.3), python-git
There is a repository that provides python-tornado=1.2.1-1, none the less, I get this error message:
The following packages have unmet dependencies:
tonythepony : Depends: python-tornado (<= 1.3) but 2.1.0-2ubuntu0.1 is to be installed
E: Unable to corr
I'm new to Linux and am trying to set up Python / Django on my machine! I installed Python 3.3 from the source file and it was compiled into /usr/local/bin.
I am trying to install one package but it depends on some other packages. While installing it aborts and tells me the following:
Depends: python (>= 2.6.6-7~) but 2.6.6-3+squeeze7 is to be installed
Depends: python-sqlalchemy (>= 0.7~) but 0.6.3-3+squeeze1 is to be installed
I don't know how to solve this dependancy problems.
I'm looking to create a rpm for this tarball and couldn't figure out which files needed to be included in the package after the install. I am used to compiling some code and including the binary output; however, since this is all python and seems to use distutils to install everything is there even bin/executable to include in the package?
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 and depends on the BeautifulSoup library.
My plan is to send the package to a friend who I am nearly certain does not have pip or the like installed.
I am doing maintenance for a python code. Python is installed in /usr/bin, the code installed in /aaa, a python 2.5 installed under /aaa/python2.5. Each time I run Python, it use /usr/bin one. How to make it run /aaa/python2.5?