From 711421baab1a34c788cd1f39da7eae8aef1179f3 Mon Sep 17 00:00:00 2001 From: Oleksandr Golovatyi Date: Fri, 19 Jul 2019 13:09:38 -0700 Subject: [PATCH 1/2] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 274cc0a4..5e169ae3 100755 --- a/README.md +++ b/README.md @@ -25,6 +25,9 @@ order: * [Authoring Python calculations in Tableau](docs/TableauConfiguration.md). * [TabPy Tools](docs/tabpy-tools.md) +Troubleshooting: +* [FAQ for configuration, startup and other issues](docs/FAQ.md) + More technical topics: * [Contributing Guide](CONTRIBUTING.md) for TabPy developers From 8bfd109e79de50fe3d0e97df8c347847e8f846d3 Mon Sep 17 00:00:00 2001 From: Oleksandr Golovatyi Date: Fri, 19 Jul 2019 13:16:53 -0700 Subject: [PATCH 2/2] Create FAQ.md --- docs/FAQ.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 docs/FAQ.md diff --git a/docs/FAQ.md b/docs/FAQ.md new file mode 100644 index 00000000..4bd7b029 --- /dev/null +++ b/docs/FAQ.md @@ -0,0 +1,14 @@ +# TabPy Frequently Asked Questions + + + + + + + + +## Startup Issues + +### AttributeError: module 'tornado.web' has no attribute 'asynchronous' + +TabPy uses Tornado 5.1.1. To it to your Python environment run `pip install tornado==5.1.1` and then try to start TabPy again.