Last active
August 29, 2015 14:14
-
-
Save vmaks/34f5206443afd8f5fe24 to your computer and use it in GitHub Desktop.
install "PlantUML" for PyCharm Community Edition
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Due to lack support of "Class Diagram/View" in the PyCharm Community Edition you could install "PlantUML integration" plugin to create a # class diagram by yourself. | |
# https://www.jetbrains.com/pycharm/features/editions_comparison_matrix.html | |
# Install "PlantUML integration" plugin for PyCharm Community Edition through "Settings/Plugins" | |
https://plugins.jetbrains.com/plugin/7017 | |
# Install "graphviz" and "libgraphviz4", that requires for "graphviz" | |
# Add repository for "libgraphviz4" | |
http://www.graphviz.org/Download..php | |
https://launchpad.net/~gviz-adm/+archive/ubuntu/graphviz-dev | |
# Install "graphviz" and "libgraphviz4" from a command line in an ubuntu | |
sudo apt-get install libgraphviz4 | |
sudo apt-get install graphviz | |
# Documentation of the "graphviz" by the link below | |
http://plantuml.sourceforge.net/index.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph unix {nodesep=.35;ranksep=0.8;edge [fontsize=11,labelfontsize=11];node [fontsize=11,height=.35,width=.55];bgcolor="#FFFFFF";ratio=auto;compound=true;remincross=true;searchsize=500;cl1 [fontcolor="#000000",margin=0,fillcolor="#FEFECE",color="#A80036",style=filled,shape=box,label=<<TABLE BGCOLOR="#FEFECE" BORDER="0" CELLBORDER="1" CELLSPACING="0" CELLPADDING="4"><TR><TD><TABLE BORDER="0" CELLBORDER="0" CELLSPACING="0" CELLPADDING="0"><TR><TD ALIGN="RIGHT"><IMG SRC="stereo.png"/></TD><TD ALIGN="LEFT"><FONT POINT-SIZE="12" COLOR="#000000">Dummy</FONT></TD></TR></TABLE></TD></TR><TR ALIGN="LEFT"><TD WIDTH="55" ALIGN="LEFT"></TD></TR><TR ALIGN="LEFT"><TD ALIGN="LEFT"></TD></TR></TABLE>>];} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment