You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Raspbery Pi | datatools-VERSION_NUMBER-raspbian-arm7.zip |
27
30
28
31
29
-
## The basic recipe
32
+
The basic recipe
33
+
----------------
30
34
31
35
+ Find the Zip file listed matching the architecture you're running and download it
32
36
+ (e.g. if you're on a Windows 10 laptop/Surface with a amd64 style CPU you'd choose the Zip file with "windows-amd64" in the name).
33
37
+ Download the zip file and unzip the file.
34
38
+ Copy the contents of the folder named "bin" to a folder that is in your path
35
39
+ (e.g. "$HOME/bin" is common).
36
40
+ Adjust your PATH if needed
37
-
+ (e.g. `export PATH="$HOME/bin:$PATH"`)
41
+
+ (e.g. export PATH="$HOME/bin:$PATH")
38
42
+ Test
39
43
40
44
@@ -51,7 +55,7 @@ zip file.
51
55
52
56
```shell
53
57
cd Downloads/
54
-
unzip datatools-*-macosx-amd64.zip
58
+
unzip datatools-*-macos-amd64.zip
55
59
mkdir -p $HOME/bin
56
60
cp -v bin/*$HOME/bin/
57
61
export PATH=$HOME/bin:$PATH
@@ -120,7 +124,8 @@ downloading the zip file.
120
124
```
121
125
122
126
123
-
## Compiling from source
127
+
Compiling from source
128
+
---------------------
124
129
125
130
_datatools_ is "go gettable" if you have gotten xlsx v1.0.5 package from [github.com/tealeg/xlsx](https://github.com/tealeg/xlsx). The datatools package does not support versions v2.x and greater of xlsx. Below are the steps
126
131
I use today with "go get" command to download the dependant packages
0 commit comments