User:Armenzg:set my environment up: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
These are the steps I will follow every time to set up my working environment: | These are the steps I will follow every time to set up my working environment: | ||
* Install the following packages: | |||
** Konversation (for IRC conversations) | |||
** Vim (better edition that comes by default) | |||
** ssh client comes install by default but this package pulls the server as well | |||
** cvs client | |||
** Mercurial | |||
<pre> | <pre> | ||
sudo apt-get install konversation | sudo apt-get install konversation | ||
sudo apt-get install vim | sudo apt-get install vim | ||
sudo apt-get install ssh | |||
sudo apt-get install cvs | |||
sudo apt-get install python-setuptools python-dev build-essential | sudo apt-get install python-setuptools python-dev build-essential | ||
sudo easy_install -U mercurial | sudo easy_install -U mercurial | ||
</pre> | </pre> | ||
* [https://wiki.mozilla.org/User:Armenzg:scripts#Install_python.2C_zope_and_buildbot Install python, buildbot, twisted and zope interface] |
Revision as of 15:13, 7 January 2009
These are the steps I will follow every time to set up my working environment:
- Install the following packages:
- Konversation (for IRC conversations)
- Vim (better edition that comes by default)
- ssh client comes install by default but this package pulls the server as well
- cvs client
- Mercurial
sudo apt-get install konversation sudo apt-get install vim sudo apt-get install ssh sudo apt-get install cvs sudo apt-get install python-setuptools python-dev build-essential sudo easy_install -U mercurial