So i trying install setuptools on a new server, so i got with
wget http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11-py2.7...
and trying to sh setuptools-0.6c11-py2.7.egg in the directory where the file is located and I get
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named setuptools.command.easy_install
I cou
i have installed python-gtk2 python-gtk2-dev python-gtk2-dbg
why i can't use ibus-setup?
root@ocean:~# ibus-setup
Traceback (most recent call last):
File "/usr/share/ibus/setup/main.py", line 28, in <module>
import gtk
ImportError: No module named gtk
please see my attachment.
Attached Images
Screenshot.jpg (89.7 KB)
I am using Ubuntu 12.04 64-bit, and started learning python today.(I tried to install a pirate version of MATLAB but failed...)
I have a linear programming problem to solve, and I want to use lp_solve module for Python.
I tried for 1~2 hours to find the download file and install the module.
I am not sure if I downloaded a right thing, and I could not install it until now.
How can I install this?
Hi
I want to install onboard (=fantastic virtual keyboard) on F17 (64 bit), works perfectly under ubuntu.
I need to run python module as trivial Linux command without worrying about the location of the file. Can I do it with Distutils?
Specific about what I need. A user should do simple installation and be able to use it:
python setup.py install
mymodule --arg value
How to do it?
I'm trying to install pip or setup tools form python 3.2 in debian 6.
First case:
apt-get install python3-pip...OK
python3 easy_install.py webob
Searching for webob
Reading http://pypi.python.org/simple/webob/
Reading http://webob.org/
Reading http://pythonpaste.org/webob/
Best match: WebOb 1.2.2
Downloading http://pypi.python.org/packages/source/W/WebOb/WebOb-1.2.2.zip#md5=de0f3...
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?
Guys I installed mySQLdb in Ubuntu with:
Code:
mycomp@mycomp-desktop:~$ sudo apt-get install python-mysqldb
but when I go to the python interpreter and type:
Code:
>>> import mySQLdb
I get:
Code:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named mySQLdb
It is installed though, because whe
I am trying to use ncurses in Python 2.6 on openSUSE 11.2, but the curses module appears to be missing.
I keep getting this error:
Code:
>>> import curses
Traceback (most recent call last):
File "<stdin>", line 1, in <module>