Skip to main content

Posts

Showing posts from 2011

How to solve: This Terminal Emulator is not functional because no 'bash' shell could be found in Aptana Studio 3

This Terminal Emulator is not functional because no 'bash' shell could be found. Please correct the problem and restart the IDE. Info Let's see the Aptana's Studio 3 log file. java.io.IOException: Cannot run program "/opt/Aptana Studio 3/plugins/com.aptana.terminal_3.0.0.1310755723/os/linux/x86/redtty" Solution chmod +x "/opt/Aptana Studio 3/plugins/com.aptana.terminal_3.0.0.1310755723/os/linux/x86/redtty" Then File -> Restart

How to install pysqlite (python sqlite binding interface) on Ubuntu Linux

First you need development libraries: $ sudo apt-get install libsqlite3-dev Then you have to download pysqlite files from http://code.google.com/p/pysqlite/ Next steps are usual: unpack and change dir After that run (you should have gcc - GNU C compiler - of course): $ python setup.py build After compilation runs successfully you are able to install pysqlite with: $ sudo python setup.py install That's all