Difference between revisions of "Plugindirectory"

From PyMOLWiki
Jump to navigation Jump to search
(superseded)
(removed)
 
Line 1: Line 1:
{{Infobox script-repo
 
|type      = module
 
|filename  = plugins/__init__.py
 
|author    = [[User:Speleo3|Thomas Holder]]
 
|license  = BSD
 
}}
 
 
== Introduction ==
 
 
 
<div style="padding: 10px; border: 4px solid red; text-align: center; background-color: #fcc">
 
<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 script was superseded by the [[Plugin Manager]] which was introduced in PyMOL 1.5.0.5
 
</div>
 
</div>
 
This page describes how to set up a personal plugin directory, that will automatically install plugins found herein.
 
It supports single python files as well as directories which contain a __init__.py file.
 
 
== Adding Pymol-script-repo to PyMOL search path ==
 
You should have the '''Pymol-script-repo''' directory added to your Python search path.
 
In '''Pymol-script-repo''', is located the folder '''plugins''', which holds the plugin to be automatically installed.
 
 
We need to import module '''plugins''' (folder '''Pymol-script-repo/plugins''') before the GUI launches. So insert into your [[pymolrc|$HOME/.pymolrc]] file:
 
 
<syntaxhighlight lang="python">
 
# eventually add ~/Pymol-script-repo to sys.path
 
import sys, os
 
sys.path.append(os.path.expanduser('~/Pymol-script-repo'))
 
 
# load the module
 
import plugins
 
</syntaxhighlight>
 
 
=== For windows users ===
 
# Open notepad
 
# Paste lines from above
 
# Save under: '''C:/Users/YOURNAME/pymolrc.pym''' (Set: "Save as type" to "All files")
 
 
=== For Ubuntu/Mint users ===
 
# gedit ~/.pymolrc
 
# Paste lines from above
 
# Save and exit
 
 
[[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