This is a read-only mirror of pymolwiki.org
Difference between revisions of "Git install scripts"
Jump to navigation
Jump to search
| Line 4: | Line 4: | ||
# Navigate in your computer to: C:/Users/YOURNAME/Documents (Note, always use forward slashes "/" for compatibility) | # Navigate in your computer to: C:/Users/YOURNAME/Documents (Note, always use forward slashes "/" for compatibility) | ||
# Right click in folder -> Select: Git Gui -> Clone Existing Repository | # Right click in folder -> Select: Git Gui -> Clone Existing Repository | ||
| − | # Source Location: https://github.com/Pymol-Scripts/Pymol-script-repo | + | # Source Location: https://github.com/Pymol-Scripts/Pymol-script-repo.git |
# Target Directory: C:/Users/YOURNAME/Documents/Pymol-script-repo | # Target Directory: C:/Users/YOURNAME/Documents/Pymol-script-repo | ||
You now have all the scripts available in your directory. | You now have all the scripts available in your directory. | ||
| Line 12: | Line 12: | ||
# Write (Remember forward slashes) | # Write (Remember forward slashes) | ||
import sys | import sys | ||
| − | sys.path.append( | + | sys.path.append('C:/Users/YOURNAME/Documents/Pymol-script-repo') |
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, and test in PyMOL. | ||
| + | print sys.path | ||
| + | import colorbydisplacement | ||
| + | |||
| + | = For Ubuntu/Mint users = | ||
| + | # Install git | ||
| + | sudo apt-get install git | ||
| + | # Navigate to desired folder: cd /home/YOURNAME/Software/pymol | ||
| + | git clone https://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. | Now start PyMOL, and test in PyMOL. | ||
print sys.path | print sys.path | ||
import colorbydisplacement | import colorbydisplacement | ||
Revision as of 20:17, 30 November 2011
For windows users
- Install Git for Windows.
Use the default settings in all options.
- Navigate in your computer to: C:/Users/YOURNAME/Documents (Note, always use forward slashes "/" for compatibility)
- Right click in folder -> Select: Git Gui -> Clone Existing Repository
- Source Location: https://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
For Ubuntu/Mint users
- Install git
sudo apt-get install git
- Navigate to desired folder: cd /home/YOURNAME/Software/pymol
git clone https://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