Skip to content

Commit b25ed50

Browse files
author
boonhapus
committed
✏️ add centos information
1 parent b0f7737 commit b25ed50

File tree

3 files changed

+43
-5
lines changed

3 files changed

+43
-5
lines changed

docs/tutorial/install.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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: &nbsp; get the tools &nbsp;][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+
117155
Try running __CS Tools__ by typing..
118156

119157
<center>*cs_tools* &#8203 &#8203 ++return++</center>

docs/tutorial/schedule.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ over time.
3737
| Measure-Object -Line
3838
```
3939

40-
=== ":fontawesome-brands-apple:, :fontawesome-brands-linux: Mac, Linux"
40+
=== ":fontawesome-brands-apple: :fontawesome-brands-linux: :fontawesome-brands-centos: Mac, Linux, ThoughtSpot cluster"
4141

4242
For the sake of example, these are the contents of a bash script in your Downloads folder called `counter.sh`
4343

@@ -65,7 +65,7 @@ Now that we've decided how to track our content, we're ready to schedule our com
6565

6666
=== ":fontawesome-brands-windows: Task Scheduler"
6767

68-
!!! info "Need help?"
68+
!!! example "Need help?"
6969

7070
[Windows Documentation][schtasks]{ target='secondary' .external-link }
7171

@@ -81,7 +81,7 @@ Now that we've decided how to track our content, we're ready to schedule our com
8181
/tr $env:USERPROFILE/Downloads/counter.ps1
8282
```
8383

84-
=== ":fontawesome-brands-apple:, :fontawesome-brands-linux: crontab"
84+
=== ":fontawesome-brands-apple:, :fontawesome-brands-linux:, :fontawesome-brands-centos: crontab"
8585

8686
!!! hint "Need help?"
8787

docs/tutorial/syncer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ folder.
7878
echo "directory = `"$env:USERPROFILE\Downloads\`"" >> $env:USERPROFILE\Downloads\report.toml
7979
```
8080

81-
=== ":fontawesome-brands-apple: :fontawesome-brands-linux: Mac, Linux"
81+
=== ":fontawesome-brands-apple: :fontawesome-brands-linux: :fontawesome-brands-centos: Mac, Linux, ThoughtSpot cluster"
8282

8383
```bash
8484
echo "[configuration]" >> $HOME/Downloads/report.toml
@@ -146,7 +146,7 @@ Let's set the CSV Syncer we created earlier to be the default for our current co
146146
cs_tools config modify --config non-prod --syncer csv://$env:USERPROFILE\Downloads\report.toml
147147
```
148148

149-
=== ":fontawesome-brands-apple: :fontawesome-brands-linux: Mac, Linux"
149+
=== ":fontawesome-brands-apple: :fontawesome-brands-linux: :fontawesome-brands-centos: Mac, Linux, ThoughtSpot cluster"
150150

151151
```bash
152152
cs_tools config modify --config non-prod --syncer csv://$HOME/Downloads/report.toml

0 commit comments

Comments
 (0)