Difference between revisions of "Git install scripts"

From PyMOLWiki
Jump to navigation Jump to search
Line 15: Line 15:
 
Save under: C:/Users/YOURNAME/pymolrc.pym (Set: "Save as type" to "All files")
 
Save under: C:/Users/YOURNAME/pymolrc.pym (Set: "Save as type" to "All files")
  
Now start PyMOL.
+
Now start PyMOL, and test in PyMOL.
 +
print sys.path
 +
import colorbydisplacement

Revision as of 15:58, 30 November 2011

For windows users

  1. Install Git for Windows.

Use the default settings in all options.

  1. Navigate in your computer to: C:/Users/YOURNAME/Documents (Note, always use forward slashes "/" for compatibility)
  2. Right click in folder -> Select: Git Gui -> Clone Existing Repository
  3. Source Location: https://github.com/Pymol-Scripts/Pymol-script-repo
  4. 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.

  1. Open notepad
  2. 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