LettuceFramework is a framework for BehaviorDrivenDevelopment in PythonLanguage (compare with CucumberFramework for RubyLanguage). http://lettuce.it/
It can be linked with the DjangoProject
Installation
The installation documentation refers to a command pip. This is not the pip which is obtained on UbuntuLinux by doing this:
sudo apt-get install pipwhich installs a different pip. Instead the following are needed:
sudo apt-get install python-pip sudo apt-get install python-setuptoolsThen it is possible to install Lettuce using
sudo pip install lettuceas given in the Lettuce documentation. The two versions of pip seem not to be compatible. -- JohnFletcher