Difference between revisions of "Plugindirectory"

From PyMOLWiki
Jump to navigation Jump to search
(removed)
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Introduction ==
+
<div style="padding: 10px; border: 4px solid red; text-align: center; background-color: #fcc">
 
+
This script was superseded by the [[Plugin Manager]] which was introduced in PyMOL 1.5.0.5
This page describes how to set up a personal plugin directory, that will automatically install plugins found herein.
+
</div>
It supports single python files as well as directories which contain a __init__.py file.
 
 
 
This plugin is being used in the Pymol-script-repo project [http://www.pymolwiki.org/index.php/Git_intro Pymol-script-repo].
 
 
 
== Adding Pymol-script-repo to PyMOL search path ==
 
You should have the "Pymol-script-repo" directory  or another directory with your plugins added to the PyMOL search path.
 
 
 
We need to import import folder '''plugins'''  "Pymol-script-repo/plugins"<br>
 
before the GUI launches. So insert into your [[pymolrc|$HOME/.pymolrc]] file:
 
 
 
=== For windows users ===
 
# Open notepad
 
# Write (Remember forward slashes)
 
import sys
 
sys.path.append('C:/Users/YOURNAME/Documents/Pymol-script-repo')
 
import plugins
 
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')
 
import plugins
 
Save and exit
 
 
 
== Python Code ==
 
This code has been put under version control. In the project, [http://www.pymolwiki.org/index.php/Git_intro Pymol-script-repo].
 
 
 
For a color coded view:
 
https://github.com/Pymol-Scripts/Pymol-script-repo/blob/master/__init__.py
 
 
 
[[Category:Plugins]]
 

Latest revision as of 10:18, 12 November 2018

This script was superseded by the Plugin Manager which was introduced in PyMOL 1.5.0.5