Ns 3

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

ns-3 installationsteps on windows

1.First download mercurial from http://mercurial.selenic.com/


to check wheather mercurial is downloaded properly or not type hg in command
prompt and if basic commands appear it has been properly installed.
2.Now download microsoft visual studio 2012 express version
http://www.microsoft.com/en-us/download/details.aspx?id=34673
3.Run the following comands by typing hg in command prompt
hg clone http://code.nsnam.org/ns-3-dev
Mercurial tutorial
Clone a project and push changes
$
$
$
$
$
$

hg clone http://selenic.com/repo/hello
cd hello
(edit files)
hg add (new files)
hg commit -m 'My changes'
hg push

Create a project and commit


$
$
$
$
$

hg init (project-directory)
cd (project-directory)
(add some files)
hg add
hg commit -m 'Initial commit'

You might also like