GraphViz's executables not found : Anaconda-3 Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Graphviz's executables are not found (Python 3.4)pg_config executable not foundWhich graphviz library API is recommended for a C++ project that needs to generate some graphs?Python Anaconda - How to Safely UninstallError “GraphViz's executables not found” when calling GraphViz layout from NetworkX in iPython notebookPython Decision Tree GraphVizimage not found - error plotting decision tree using dotInvocationException: GraphViz's executables not foundGraphViz's executables not foundWhy are only the parent node's edges labelled in exported Decission TreePython, not able to graph trees using graphviz with the anytree package
Can this water damage be explained by lack of gutters and grading issues?
Who can become a wight?
Are Flameskulls resistant to magical piercing damage?
Has a Nobel Peace laureate ever been accused of war crimes?
Continue tikz picture on next page
Why isn't everyone flabbergasted about Bran's "gift"?
How can I introduce the names of fantasy creatures to the reader?
Do chord progressions usually move by fifths?
Meaning of "Not holding on that level of emuna/bitachon"
Why aren't these two solutions equivalent? Combinatorics problem
Why is ArcGIS Pro not symbolizing my entire range of values?
Why did Bronn offer to be Tyrion Lannister's champion in trial by combat?
Determine the generator of an ideal of ring of integers
false 'Security alert' from Google - every login generates mails from 'no-reply@accounts.google.com'
Who's this lady in the war room?
Why does my GNOME settings mention "Moto C Plus"?
Why is one lightbulb in a string illuminated?
Etymology of 見舞い
How do I deal with an erroneously large refund?
Can the van der Waals coefficients be negative in the van der Waals equation for real gases?
How is an IPA symbol that lacks a name (e.g. ɲ) called?
Why did Israel vote against lifting the American embargo on Cuba?
Married in secret, can marital status in passport be changed at a later date?
Is my guitar’s action too high?
GraphViz's executables not found : Anaconda-3
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!Graphviz's executables are not found (Python 3.4)pg_config executable not foundWhich graphviz library API is recommended for a C++ project that needs to generate some graphs?Python Anaconda - How to Safely UninstallError “GraphViz's executables not found” when calling GraphViz layout from NetworkX in iPython notebookPython Decision Tree GraphVizimage not found - error plotting decision tree using dotInvocationException: GraphViz's executables not foundGraphViz's executables not foundWhy are only the parent node's edges labelled in exported Decission TreePython, not able to graph trees using graphviz with the anytree package
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am trying to display the tree output , but when I run the script below, I receive an error like :
InvocationException: GraphViz's executables not found
I've searched similar topics here, but most of them are Mac related. I'm using Windows 10 64-bit operating system, and I use Anaconda-3 64 bit. I'd love to hear your suggestions on this.
#Displaying the decision tree
from sklearn import tree
#from StringIO import StringIO
from io import StringIO
#from StringIO import StringIO
from IPython.display import Image
out = StringIO()
tree.export_graphviz(classifier, out_file=out)
import pydotplus
graph=pydotplus.graph_from_dot_data(out.getvalue())
Image(graph.create_png())
edit : I've installed graphviz and pydotplus modules again, but still now working.
python python-3.x anaconda graphviz decision-tree
add a comment |
I am trying to display the tree output , but when I run the script below, I receive an error like :
InvocationException: GraphViz's executables not found
I've searched similar topics here, but most of them are Mac related. I'm using Windows 10 64-bit operating system, and I use Anaconda-3 64 bit. I'd love to hear your suggestions on this.
#Displaying the decision tree
from sklearn import tree
#from StringIO import StringIO
from io import StringIO
#from StringIO import StringIO
from IPython.display import Image
out = StringIO()
tree.export_graphviz(classifier, out_file=out)
import pydotplus
graph=pydotplus.graph_from_dot_data(out.getvalue())
Image(graph.create_png())
edit : I've installed graphviz and pydotplus modules again, but still now working.
python python-3.x anaconda graphviz decision-tree
add a comment |
I am trying to display the tree output , but when I run the script below, I receive an error like :
InvocationException: GraphViz's executables not found
I've searched similar topics here, but most of them are Mac related. I'm using Windows 10 64-bit operating system, and I use Anaconda-3 64 bit. I'd love to hear your suggestions on this.
#Displaying the decision tree
from sklearn import tree
#from StringIO import StringIO
from io import StringIO
#from StringIO import StringIO
from IPython.display import Image
out = StringIO()
tree.export_graphviz(classifier, out_file=out)
import pydotplus
graph=pydotplus.graph_from_dot_data(out.getvalue())
Image(graph.create_png())
edit : I've installed graphviz and pydotplus modules again, but still now working.
python python-3.x anaconda graphviz decision-tree
I am trying to display the tree output , but when I run the script below, I receive an error like :
InvocationException: GraphViz's executables not found
I've searched similar topics here, but most of them are Mac related. I'm using Windows 10 64-bit operating system, and I use Anaconda-3 64 bit. I'd love to hear your suggestions on this.
#Displaying the decision tree
from sklearn import tree
#from StringIO import StringIO
from io import StringIO
#from StringIO import StringIO
from IPython.display import Image
out = StringIO()
tree.export_graphviz(classifier, out_file=out)
import pydotplus
graph=pydotplus.graph_from_dot_data(out.getvalue())
Image(graph.create_png())
edit : I've installed graphviz and pydotplus modules again, but still now working.
python python-3.x anaconda graphviz decision-tree
python python-3.x anaconda graphviz decision-tree
edited Aug 17 '17 at 8:09
Cagdas Kanar
asked Aug 17 '17 at 8:02
Cagdas KanarCagdas Kanar
731211
731211
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
i had same problem. Here is the solution for ((Win10, Anaconda3, Jupyter notebook, python 3.x)
Download and Install https://graphviz.gitlab.io/_pages/Download/Download_windows.html
conda install graphviz
Add graphviz installed path (C:...graphvizbin) to
Control Panel > System and Security > System > Advanced System Settings > Environment Variables > Path > Edit > New- Very Important: Restart your Jupyter notebook/machine. I tried restarting machine and it worked.
This question is answered for different OS here: Graphviz's executables are not found (Python 3.4)
add a comment |
I also had a similar issue. Like Vamshi I have a similar Win10 System. My specifications; Win10, x64-based system, Anaconda3, Anaconda Navigator 1.9.6, Python 3.x (Spyder 3.3.3 to be exact).
My solution also involves editing the PATH environment variables. Here's a step-by-step plan:
Navigate to the "Environments" tab in your Anaconda explorer window. You should be able to find it in the left top side of the screen.
Select the relevant environment in which you would like to install the GraphViz package. For most users this will simply be the "base (root)" environment.
Once you have selected the environment in which you would like to install GraphViz, click on the Play symbol on the right-hand side of the name of your environment (e.g. "base (root)". A number of options should pop up. Just select the "Open Terminal" option from the drop-down menu.
As you click "Open Terminal" a Command Prompt will be opened in the right spot for your environment. Type in the following code;
conda install graphviz
PS: Do NOT type something like "pip install graphviz". This can destroy your Anaconda install.
Anaconda will now download the Graphviz package and check its compatibility with all other packages you have installed. Please be patient, this may take some time depending on your system and internet connection.
Once the installation is complete, exit the Command Prompt and return to the environment in which you have installed Graphviz (probably "base (root)"). From the drop-down menu select the "installed" option to the left of the "Channels" drop-down menu. In the search box to the right type "graphviz" and check if the package has been successfully installed in your environment of choice.
Now this is complete, open up a .py script that uses some Graphviz features and execute the script. Most likely you will still see a warning message such as this: "GraphViz's executables not found". In the warning message a certain file location address will be given. For me this file location was "C:UsersDavidAnaconda3Librarybingraphviz" but it may well be different depending on your installation process and the setup of your computer. Make sure you copy this file path.
Now we need to edit our system's environment variables. Be very careful here. First, just press your Windows Start key to open up your Start menu. Afterwards, simply type "Environment variables". The first suggestion Windows should give you is this: "Edit the system environment variables". Click this link.
Now you should be on the "advanced" tab of the System properties menu. Click the "Environment variables" button at the bottom of this menu -> Select path in the new menu -> Click "Edit" -> Click "New" -> In this box paste the link from your Python warning box. For me this was "C:UsersDavidAnaconda3Librarybingraphviz" but it may be different. Hit enter.
A new line should have appeared in your path menu with the exact address you just entered.
Close all programs and restart your PC. This is necessary for the new path to take effect.
Reopen Anaconda Explorer, select the environment you installed GraphViz in and run Spyder from the Anaconda Explorer.
Rerun your .py script that uses GraphViz features. The error message should have disappeared and the package should function as intended.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f45729624%2fgraphvizs-executables-not-found-anaconda-3%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
i had same problem. Here is the solution for ((Win10, Anaconda3, Jupyter notebook, python 3.x)
Download and Install https://graphviz.gitlab.io/_pages/Download/Download_windows.html
conda install graphviz
Add graphviz installed path (C:...graphvizbin) to
Control Panel > System and Security > System > Advanced System Settings > Environment Variables > Path > Edit > New- Very Important: Restart your Jupyter notebook/machine. I tried restarting machine and it worked.
This question is answered for different OS here: Graphviz's executables are not found (Python 3.4)
add a comment |
i had same problem. Here is the solution for ((Win10, Anaconda3, Jupyter notebook, python 3.x)
Download and Install https://graphviz.gitlab.io/_pages/Download/Download_windows.html
conda install graphviz
Add graphviz installed path (C:...graphvizbin) to
Control Panel > System and Security > System > Advanced System Settings > Environment Variables > Path > Edit > New- Very Important: Restart your Jupyter notebook/machine. I tried restarting machine and it worked.
This question is answered for different OS here: Graphviz's executables are not found (Python 3.4)
add a comment |
i had same problem. Here is the solution for ((Win10, Anaconda3, Jupyter notebook, python 3.x)
Download and Install https://graphviz.gitlab.io/_pages/Download/Download_windows.html
conda install graphviz
Add graphviz installed path (C:...graphvizbin) to
Control Panel > System and Security > System > Advanced System Settings > Environment Variables > Path > Edit > New- Very Important: Restart your Jupyter notebook/machine. I tried restarting machine and it worked.
This question is answered for different OS here: Graphviz's executables are not found (Python 3.4)
i had same problem. Here is the solution for ((Win10, Anaconda3, Jupyter notebook, python 3.x)
Download and Install https://graphviz.gitlab.io/_pages/Download/Download_windows.html
conda install graphviz
Add graphviz installed path (C:...graphvizbin) to
Control Panel > System and Security > System > Advanced System Settings > Environment Variables > Path > Edit > New- Very Important: Restart your Jupyter notebook/machine. I tried restarting machine and it worked.
This question is answered for different OS here: Graphviz's executables are not found (Python 3.4)
answered Jan 21 '18 at 22:09
Vamshi IndlaVamshi Indla
313
313
add a comment |
add a comment |
I also had a similar issue. Like Vamshi I have a similar Win10 System. My specifications; Win10, x64-based system, Anaconda3, Anaconda Navigator 1.9.6, Python 3.x (Spyder 3.3.3 to be exact).
My solution also involves editing the PATH environment variables. Here's a step-by-step plan:
Navigate to the "Environments" tab in your Anaconda explorer window. You should be able to find it in the left top side of the screen.
Select the relevant environment in which you would like to install the GraphViz package. For most users this will simply be the "base (root)" environment.
Once you have selected the environment in which you would like to install GraphViz, click on the Play symbol on the right-hand side of the name of your environment (e.g. "base (root)". A number of options should pop up. Just select the "Open Terminal" option from the drop-down menu.
As you click "Open Terminal" a Command Prompt will be opened in the right spot for your environment. Type in the following code;
conda install graphviz
PS: Do NOT type something like "pip install graphviz". This can destroy your Anaconda install.
Anaconda will now download the Graphviz package and check its compatibility with all other packages you have installed. Please be patient, this may take some time depending on your system and internet connection.
Once the installation is complete, exit the Command Prompt and return to the environment in which you have installed Graphviz (probably "base (root)"). From the drop-down menu select the "installed" option to the left of the "Channels" drop-down menu. In the search box to the right type "graphviz" and check if the package has been successfully installed in your environment of choice.
Now this is complete, open up a .py script that uses some Graphviz features and execute the script. Most likely you will still see a warning message such as this: "GraphViz's executables not found". In the warning message a certain file location address will be given. For me this file location was "C:UsersDavidAnaconda3Librarybingraphviz" but it may well be different depending on your installation process and the setup of your computer. Make sure you copy this file path.
Now we need to edit our system's environment variables. Be very careful here. First, just press your Windows Start key to open up your Start menu. Afterwards, simply type "Environment variables". The first suggestion Windows should give you is this: "Edit the system environment variables". Click this link.
Now you should be on the "advanced" tab of the System properties menu. Click the "Environment variables" button at the bottom of this menu -> Select path in the new menu -> Click "Edit" -> Click "New" -> In this box paste the link from your Python warning box. For me this was "C:UsersDavidAnaconda3Librarybingraphviz" but it may be different. Hit enter.
A new line should have appeared in your path menu with the exact address you just entered.
Close all programs and restart your PC. This is necessary for the new path to take effect.
Reopen Anaconda Explorer, select the environment you installed GraphViz in and run Spyder from the Anaconda Explorer.
Rerun your .py script that uses GraphViz features. The error message should have disappeared and the package should function as intended.
add a comment |
I also had a similar issue. Like Vamshi I have a similar Win10 System. My specifications; Win10, x64-based system, Anaconda3, Anaconda Navigator 1.9.6, Python 3.x (Spyder 3.3.3 to be exact).
My solution also involves editing the PATH environment variables. Here's a step-by-step plan:
Navigate to the "Environments" tab in your Anaconda explorer window. You should be able to find it in the left top side of the screen.
Select the relevant environment in which you would like to install the GraphViz package. For most users this will simply be the "base (root)" environment.
Once you have selected the environment in which you would like to install GraphViz, click on the Play symbol on the right-hand side of the name of your environment (e.g. "base (root)". A number of options should pop up. Just select the "Open Terminal" option from the drop-down menu.
As you click "Open Terminal" a Command Prompt will be opened in the right spot for your environment. Type in the following code;
conda install graphviz
PS: Do NOT type something like "pip install graphviz". This can destroy your Anaconda install.
Anaconda will now download the Graphviz package and check its compatibility with all other packages you have installed. Please be patient, this may take some time depending on your system and internet connection.
Once the installation is complete, exit the Command Prompt and return to the environment in which you have installed Graphviz (probably "base (root)"). From the drop-down menu select the "installed" option to the left of the "Channels" drop-down menu. In the search box to the right type "graphviz" and check if the package has been successfully installed in your environment of choice.
Now this is complete, open up a .py script that uses some Graphviz features and execute the script. Most likely you will still see a warning message such as this: "GraphViz's executables not found". In the warning message a certain file location address will be given. For me this file location was "C:UsersDavidAnaconda3Librarybingraphviz" but it may well be different depending on your installation process and the setup of your computer. Make sure you copy this file path.
Now we need to edit our system's environment variables. Be very careful here. First, just press your Windows Start key to open up your Start menu. Afterwards, simply type "Environment variables". The first suggestion Windows should give you is this: "Edit the system environment variables". Click this link.
Now you should be on the "advanced" tab of the System properties menu. Click the "Environment variables" button at the bottom of this menu -> Select path in the new menu -> Click "Edit" -> Click "New" -> In this box paste the link from your Python warning box. For me this was "C:UsersDavidAnaconda3Librarybingraphviz" but it may be different. Hit enter.
A new line should have appeared in your path menu with the exact address you just entered.
Close all programs and restart your PC. This is necessary for the new path to take effect.
Reopen Anaconda Explorer, select the environment you installed GraphViz in and run Spyder from the Anaconda Explorer.
Rerun your .py script that uses GraphViz features. The error message should have disappeared and the package should function as intended.
add a comment |
I also had a similar issue. Like Vamshi I have a similar Win10 System. My specifications; Win10, x64-based system, Anaconda3, Anaconda Navigator 1.9.6, Python 3.x (Spyder 3.3.3 to be exact).
My solution also involves editing the PATH environment variables. Here's a step-by-step plan:
Navigate to the "Environments" tab in your Anaconda explorer window. You should be able to find it in the left top side of the screen.
Select the relevant environment in which you would like to install the GraphViz package. For most users this will simply be the "base (root)" environment.
Once you have selected the environment in which you would like to install GraphViz, click on the Play symbol on the right-hand side of the name of your environment (e.g. "base (root)". A number of options should pop up. Just select the "Open Terminal" option from the drop-down menu.
As you click "Open Terminal" a Command Prompt will be opened in the right spot for your environment. Type in the following code;
conda install graphviz
PS: Do NOT type something like "pip install graphviz". This can destroy your Anaconda install.
Anaconda will now download the Graphviz package and check its compatibility with all other packages you have installed. Please be patient, this may take some time depending on your system and internet connection.
Once the installation is complete, exit the Command Prompt and return to the environment in which you have installed Graphviz (probably "base (root)"). From the drop-down menu select the "installed" option to the left of the "Channels" drop-down menu. In the search box to the right type "graphviz" and check if the package has been successfully installed in your environment of choice.
Now this is complete, open up a .py script that uses some Graphviz features and execute the script. Most likely you will still see a warning message such as this: "GraphViz's executables not found". In the warning message a certain file location address will be given. For me this file location was "C:UsersDavidAnaconda3Librarybingraphviz" but it may well be different depending on your installation process and the setup of your computer. Make sure you copy this file path.
Now we need to edit our system's environment variables. Be very careful here. First, just press your Windows Start key to open up your Start menu. Afterwards, simply type "Environment variables". The first suggestion Windows should give you is this: "Edit the system environment variables". Click this link.
Now you should be on the "advanced" tab of the System properties menu. Click the "Environment variables" button at the bottom of this menu -> Select path in the new menu -> Click "Edit" -> Click "New" -> In this box paste the link from your Python warning box. For me this was "C:UsersDavidAnaconda3Librarybingraphviz" but it may be different. Hit enter.
A new line should have appeared in your path menu with the exact address you just entered.
Close all programs and restart your PC. This is necessary for the new path to take effect.
Reopen Anaconda Explorer, select the environment you installed GraphViz in and run Spyder from the Anaconda Explorer.
Rerun your .py script that uses GraphViz features. The error message should have disappeared and the package should function as intended.
I also had a similar issue. Like Vamshi I have a similar Win10 System. My specifications; Win10, x64-based system, Anaconda3, Anaconda Navigator 1.9.6, Python 3.x (Spyder 3.3.3 to be exact).
My solution also involves editing the PATH environment variables. Here's a step-by-step plan:
Navigate to the "Environments" tab in your Anaconda explorer window. You should be able to find it in the left top side of the screen.
Select the relevant environment in which you would like to install the GraphViz package. For most users this will simply be the "base (root)" environment.
Once you have selected the environment in which you would like to install GraphViz, click on the Play symbol on the right-hand side of the name of your environment (e.g. "base (root)". A number of options should pop up. Just select the "Open Terminal" option from the drop-down menu.
As you click "Open Terminal" a Command Prompt will be opened in the right spot for your environment. Type in the following code;
conda install graphviz
PS: Do NOT type something like "pip install graphviz". This can destroy your Anaconda install.
Anaconda will now download the Graphviz package and check its compatibility with all other packages you have installed. Please be patient, this may take some time depending on your system and internet connection.
Once the installation is complete, exit the Command Prompt and return to the environment in which you have installed Graphviz (probably "base (root)"). From the drop-down menu select the "installed" option to the left of the "Channels" drop-down menu. In the search box to the right type "graphviz" and check if the package has been successfully installed in your environment of choice.
Now this is complete, open up a .py script that uses some Graphviz features and execute the script. Most likely you will still see a warning message such as this: "GraphViz's executables not found". In the warning message a certain file location address will be given. For me this file location was "C:UsersDavidAnaconda3Librarybingraphviz" but it may well be different depending on your installation process and the setup of your computer. Make sure you copy this file path.
Now we need to edit our system's environment variables. Be very careful here. First, just press your Windows Start key to open up your Start menu. Afterwards, simply type "Environment variables". The first suggestion Windows should give you is this: "Edit the system environment variables". Click this link.
Now you should be on the "advanced" tab of the System properties menu. Click the "Environment variables" button at the bottom of this menu -> Select path in the new menu -> Click "Edit" -> Click "New" -> In this box paste the link from your Python warning box. For me this was "C:UsersDavidAnaconda3Librarybingraphviz" but it may be different. Hit enter.
A new line should have appeared in your path menu with the exact address you just entered.
Close all programs and restart your PC. This is necessary for the new path to take effect.
Reopen Anaconda Explorer, select the environment you installed GraphViz in and run Spyder from the Anaconda Explorer.
Rerun your .py script that uses GraphViz features. The error message should have disappeared and the package should function as intended.
answered Mar 9 at 2:03
VermundirVermundir
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f45729624%2fgraphvizs-executables-not-found-anaconda-3%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown