First steps in Yambopy: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Enter in a node and create in the scratch a folder ssh -Y tutoXY@cecam; ssh -Y node0XY cd /home/scratch mkdir your_name; cd your_name You clone yambopy from the git reposito...") |
No edit summary |
||
Line 1: | Line 1: | ||
Enter in a node and create in the scratch a folder | Enter in a node and create in the scratch a folder | ||
<source lang="python"> | |||
ssh -Y tutoXY@cecam; ssh -Y node0XY | ssh -Y tutoXY@cecam; ssh -Y node0XY | ||
cd /home/scratch | cd /home/scratch | ||
mkdir your_name; cd your_name | mkdir your_name; cd your_name | ||
</source> | |||
You clone yambopy from the git repository | You clone yambopy from the git repository | ||
<source lang="python"> | |||
git clone https://github.com/henriquemiranda/yambo-py.git | git clone https://github.com/henriquemiranda/yambo-py.git | ||
</source> | |||
You enter into the yambopy folder and install | You enter into the yambopy folder and install | ||
<source lang="python"> | |||
cd yamboypy | cd yamboypy | ||
python setup.py install --user | python setup.py install --user | ||
</source> | |||
Now yambopy is ready for use! Just go to tutorials folder and follow the docs! | |||
<source lang="python"> | |||
cd tutorial/bn | |||
</source> |
Revision as of 13:47, 25 April 2017
Enter in a node and create in the scratch a folder
<source lang="python"> ssh -Y tutoXY@cecam; ssh -Y node0XY cd /home/scratch mkdir your_name; cd your_name </source>
You clone yambopy from the git repository
<source lang="python"> git clone https://github.com/henriquemiranda/yambo-py.git </source>
You enter into the yambopy folder and install
<source lang="python"> cd yamboypy python setup.py install --user </source>
Now yambopy is ready for use! Just go to tutorials folder and follow the docs!
<source lang="python"> cd tutorial/bn </source>