@@ -54,6 +54,9 @@ Click the __blue button__{ .fc-blue } below to fill out the Google Form[^1] and
5454
5555 An alternative for installing multiple system-level python distributions could be [`pyenv`][pyenv].
5656
57+ === ":fontawesome-brands-centos: ThoughtSpot cluster"
58+ Python is already installed here! You should be good to go.
59+
5760
5861<center >
5962[ :material-tools:   ; get the tools   ; ] [ google-form-install ] { target='secondary' .md-button .md-button--primary }
@@ -114,6 +117,41 @@ Follow the steps below to get __CS Tools__ installed on your platform.
114117
115118 If you see this error in your terminal, try using `python3` instead of `python` above.
116119
120+ === ":fontawesome-brands-centos: ThoughtSpot cluster"
121+
122+ __ We strongly recommend against this option.__ { .fc-coral } __ CS Tools__ should ideally run from another machine.
123+
124+ ```bash
125+ # Navigate to the Downloads directory
126+ cd $HOME/Downloads
127+
128+ # Unzip the CS Tools bootstrapper
129+ unzip *-cs_tools-* -d cs_tools-bootstrapper
130+
131+ # Navigate into the unzipped directory
132+ cd cs_tools-bootstrapper
133+
134+ # Run the help command to see the CLI
135+ python bootstrap -h
136+
137+ # Run the installer
138+ python bootstrap --reinstall
139+ ```
140+
141+ ??? fail "I get a REALLY noisy error about locales!"
142+
143+ By default, some __ThoughtSpot__ Software builds limit the Python environment to where it thinks you are
144+ restricted to ASCII data. The solution to this problem is to export your locale prior to executing __CS Tools__.
145+
146+ ```
147+ export LC_ALL=C.UTF-8
148+ export LANG=C.UTF-8
149+ ```
150+
151+ The bootstrapper adds locale data to your shell profiles. Run `exec $SHELL` to reload the profile and capture
152+ this information.
153+
154+
117155Try running __ CS Tools__ by typing..
118156
119157<center >*cs_tools* ​ ​ ++return++</center >
0 commit comments