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: docs/user_guides/client_installation/index.md
+8-34
Original file line number
Diff line number
Diff line change
@@ -9,68 +9,42 @@ The Hopsworks client library is required to connect to the Hopsworks Feature Sto
9
9
!!! note "Virtual environment"
10
10
It is recommended to use a virtual python environment instead of the system environment used by your operating system, in order to avoid any side effects regarding interfering dependencies.
On OSX systems you might need to install librdkafka manually before installing hopsworks. You can verify if you have installed it previously using `brew info librdkafka`. Hopsworks requires `librdkafka` version to be lower than 2.0.0. If it is not installed yet, you can do so using `brew install`, however, you always need to set the `C_INCLUDE_PATH` and `LIBRARY_PATH`.
If it is already installed, set the environment variables and proceed with installing the hopsworks client library:
27
-
```
28
-
export C_INCLUDE_PATH=$(brew --prefix)/include
29
-
export LIBRARY_PATH=$(brew --prefix)/lib
30
-
pip install hopsworks
31
-
```
18
+
Hopsworks latest version should work on OSX systems without any additional requirements. However if installing an older version of the Hopsworks SDK you might need to install `librdkafka` manually. Checkout the documentation for the specific version you are installing.
32
19
33
20
!!! attention "Windows/Conda Installation"
34
21
35
22
On Windows systems you might need to install twofish manually before installing hopsworks, if you don't have the Microsoft Visual C++ Build Tools installed. In that case, it is recommended to use a conda environment and run the following commands:
36
23
37
-
```
24
+
```bash
38
25
conda install twofish
39
-
setx CONDA_DLL_SEARCH_MODIFICATION_ENABLE 1
40
26
pip install hopsworks
41
27
```
42
28
43
29
## Feature Store only
44
30
To only install the Hopsworks Feature Store client library, execute the following command:
On OSX systems you might need to install librdkafka manually before installing hopsworks. You can verify if you have installed it previously using `brew info librdkafka`. Hopsworks requires `librdkafka` version to be lower than 2.0.0. If it is not installed yet, you can do so using `brew install`, however, you always need to set the `C_INCLUDE_PATH` and `LIBRARY_PATH`.
If it is already installed, set the environment variables and proceed with installing the hopsworks client library:
61
-
```
62
-
export C_INCLUDE_PATH=$(brew --prefix)/include
63
-
export LIBRARY_PATH=$(brew --prefix)/lib
64
-
pip install hsfs[python]
65
-
```
40
+
Hopsworks latest version should work on OSX systems without any additional requirements. However if installing an older version of the Hopsworks SDK you might need to install `librdkafka` manually. Checkout the documentation for the specific version you are installing.
66
41
67
42
!!! attention "Windows/Conda Installation"
68
43
69
44
On Windows systems you might need to install twofish manually before installing hsfs, if you don't have the Microsoft Visual C++ Build Tools installed. In that case, it is recommended to use a conda environment and run the following commands:
0 commit comments