Contribute to Toaster: Difference between revisions

From Yocto Project
Jump to navigationJump to search
(Created page with "This page summarises the Toaster development process. We hope this will help you start contributing to the project. == Set up the local repository == * Select a [http://www.yo...")
 
Line 3: Line 3:
== Set up the local repository ==
== Set up the local repository ==


* Select a [http://www.yoctoproject.org/docs/1.5.1/ref-manual/ref-manual.html#detailed-supported-distros | Yocto Project 1.5 compatible host], [https://www.djangoproject.com/download/ | install Django-1.5] and South 0.8.4. The "pip" application is recommended to manage the install process.
* Select a [http://www.yoctoproject.org/docs/1.5.1/ref-manual/ref-manual.html#detailed-supported-distros Yocto Project 1.5 compatible host], [https://www.djangoproject.com/download/ install Django-1.5] and South 0.8.4. The "pip" application is recommended to manage the install process.


<code>
<code>
$ sudo apt-get install pip
$ sudo apt-get install pip
<br />
$ sudo pip uninstall django
$ sudo pip uninstall django
<br />
$ sudo pip install django==1.5
$ sudo pip install django==1.5
<br />
$ sudo pip install South==0.8.4
$ sudo pip install South==0.8.4
</code>
</code>

Revision as of 17:24, 21 January 2014

This page summarises the Toaster development process. We hope this will help you start contributing to the project.

Set up the local repository

$ sudo apt-get install pip
$ sudo pip uninstall django
$ sudo pip install django==1.5
$ sudo pip install South==0.8.4