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
Copy file name to clipboardExpand all lines: README.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,9 +26,19 @@ Windows doesn't provide `pkg-config`, so have it installed by following [these i
26
26
27
27
### Seabolt
28
28
29
+
[Seabolt](http://github.com/neo4j-drivers/seabolt) is the C Connector Library for Neo4j and is used by the Go driver as the base layer.
30
+
Seabolt can either be installed from binaries or from source.
31
+
29
32
#### Binaries
30
33
31
-
We're now providing _**experimental**_ binaries for `Linux`, `MacOS` and `Windows`[here](https://github.com/neo4j-drivers/seabolt/releases). Please remember that `OpenSSL` is a required dependency for `Linux` and `MacOS` - TLS on `Windows` depends on native SCHANNEL provider and doesn't require any additional third-party dependencies from version 1.7.3 onwards.
34
+
We're provide _**experimental**_ binaries for `Linux`, `MacOS` and `Windows`[here](https://github.com/neo4j-drivers/seabolt/releases). Please remember that `OpenSSL` is a required dependency for `Linux` and `MacOS` - TLS on `Windows` depends on native SCHANNEL provider and doesn't require any additional third-party dependencies from version 1.7.3 onwards.
35
+
36
+
Download the binary matching your system and extract the package using the following command (assuming that you saved the package as ~/Downloads/seabolt.tar.gz).
37
+
The command actually skips the top-level folder inside the tar.gz package and extracts its contents into the root folder `/`.:
38
+
39
+
```
40
+
tar zxvf ~/Downloads/seabolt.tar.gz --strip-components=1 -C /
41
+
```
32
42
33
43
#### Source
34
44
@@ -40,6 +50,12 @@ Set `LD_LIBRARY_PATH`/`DYLD_LIBRARY_PATH` to include `<seabolt_install_dir>/lib`
40
50
41
51
Add `<seabolt_install_dir>\bin` to `PATH` environment variable on Windows.
42
52
53
+
There's a 3rd party tap for [brew](https://brew.sh) that you can use to download, compile and install Seabolt into the correct place on macOS: [homebrew-seabolt/seabolt](https://github.com/michael-simons/homebrew-seabolt):
0 commit comments