This is a read-only mirror of pymolwiki.org
Difference between revisions of "Git install scripts"
Line 8: | Line 8: | ||
/home/YOURNAME/Software/pymol | /home/YOURNAME/Software/pymol | ||
− | Now go to: '''Adding Pymol-script-repo to PyMOL search path''' | + | Now go to: '''Adding Pymol-script-repo to PyMOL search path''' [http://www.pymolwiki.org/index.php/Git_install#Adding_Pymol-script-repo_to_PyMOL_search_path] |
== Git install instructions == | == Git install instructions == |
Revision as of 15:21, 3 December 2011
Manual download of scripts
If you don't have the option or want't to install git on your system, then go to
https://github.com/Pymol-Scripts/Pymol-script-repo
Click the "ZIP" button, near the top left corner. Now unpack the files to a directory. For example:
C:/Users/YOURNAME/Documents/Pymol-script-repo
or
/home/YOURNAME/Software/pymol
Now go to: Adding Pymol-script-repo to PyMOL search path [1]
Git install instructions
For windows users
- Install Git for Windows.
Use following settings in options, (You can read more here).
- Windows Explorer Integration -> Context Menu Entries -> Git 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.
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
Adding Pymol-script-repo to PyMOL search path
You now have to add the "Pymol-script-repo" directory to the PyMOL search path.
For windows users
- 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")
For Ubuntu/Mint users
gedit ~/.pymolrc
Write
import sys sys.path.append('/home/YOURNAME/Software/pymol/Pymol-script-repo')
Save and exit
Test the Scripts
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:
For windows users
- Navigate to C:/Users/YOURNAME/Documents/Pymol-script-repo
- Right click in folder -> Select: Git Bash
- Write in terminal
git pull origin master
For Ubuntu/Mint users
- Navigate to /home/YOURNAME/Software/pymol/Pymol-script-repo
- Write in terminal.
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