This is a read-only mirror of pymolwiki.org
Difference between revisions of "Git install scripts"
Line 1: | Line 1: | ||
− | = For windows users | + | = The Git way - For windows users = |
# Install [http://code.google.com/p/msysgit/downloads/list?can=3&q=official+Git Git for Windows]. | # Install [http://code.google.com/p/msysgit/downloads/list?can=3&q=official+Git Git for Windows]. | ||
Use following settings in options, [http://www.geekgumbo.com/2010/04/09/installing-git-on-windows/ read more here]. | Use following settings in options, [http://www.geekgumbo.com/2010/04/09/installing-git-on-windows/ read more here]. | ||
Line 31: | Line 31: | ||
git pull origin master | git pull origin master | ||
− | = For Ubuntu/Mint users | + | = The Git way - For Ubuntu/Mint users = |
# Install git | # Install git | ||
sudo apt-get install git | sudo apt-get install git |
Revision as of 12:08, 1 December 2011
The Git way - For windows users
- Install Git for Windows.
Use following settings in options, read more here.
- Windows Explorer Integration -> Context Menu Entries -> Gut Bash Here + Git GUI here
- Run Git and included Unix tools from Windows Command prompts
- Checkout Windows style, commit Unix-style endings
- Navigate to: C:/Users/YOURNAME/Documents (Note, always use forward slashes "/" for compatibility)
- Right click in folder -> Select: Git Gui -> Clone Existing Repository
- Source Location: git://github.com/Pymol-Scripts/Pymol-script-repo.git
- Target Directory: C:/Users/YOURNAME/Documents/Pymol-script-repo
You now have all the scripts available in your directory.
You now have to add the "Pymol-script-repo" directory to the PyMOL search path.
- Open notepad
- Write (Remember forward slashes)
import sys sys.path.append('C:/Users/YOURNAME/Documents/Pymol-script-repo')
Save under: C:/Users/YOURNAME/pymolrc.pym (Set: "Save as type" to "All files")
Now start PyMOL, and test in PyMOL.
print sys.path import colorbydisplacement help(colorbydisplacement)
Get latest changes to scripts
If new scripts are available or changes have been made, then:
- Navigate to C:/Users/YOURNAME/Documents/Pymol-script-repo
- Right click in folder -> Select: Git Bash
- Write in terminal. Now you are done.
git pull origin master
The Git way - For Ubuntu/Mint users
- Install git
sudo apt-get install git
- Navigate to desired folder: cd /home/YOURNAME/Software/pymol
git clone git://github.com/Pymol-Scripts/Pymol-script-repo.git
You now have all the scripts available in: /home/YOURNAME/Software/pymol/Pymol-script-repo
You now have to add the "Pymol-script-repo" directory to the PyMOL search path.
gedit ~/.pymolrc
Write
import sys sys.path.append('/home/YOURNAME/Software/pymol/Pymol-script-repo')
Save and exit
Now start PyMOL, and test in PyMOL.
print sys.path import colorbydisplacement help(colorbydisplacement)
Get latest changes to scripts
If new scripts are available or changes have been made, then:
- Navigate to /home/YOURNAME/Software/pymol/Pymol-script-repo
- Write in terminal. Now you are done.
git pull origin master
Do you want to contribute with a script?
Information how to contribute scripts to the repository. It's easy!
http://www.pymolwiki.org/index.php/git_authors