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/source/user_guide/cli/quickstart.rst
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -61,79 +61,79 @@ To work with gradient boosting models, install the ``boosted`` module. This modu
61
61
62
62
.. code-block:: bash
63
63
64
-
$ python3 -m pip install oracle-ads[boosted]
64
+
$ python3 -m pip install "oracle-ads[boosted]"
65
65
66
66
For big data use cases using Oracle Big Data Service (BDS), install the ``bds`` module. It includes the following libraries: ``ibis-framework[impala]``, ``hdfs[kerberos]`` and ``sqlalchemy``.
67
67
68
68
.. code-block:: bash
69
69
70
-
$ python3 -m pip install oracle-ads[bds]
70
+
$ python3 -m pip install "oracle-ads[bds]"
71
71
72
72
To work with a broad set of data formats (for example, Excel, Avro, etc.) install the ``data`` module. It includes the following libraries: ``fastavro``, ``openpyxl``, ``pandavro``, ``asteval``, ``datefinder``, ``htmllistparse``, and ``sqlalchemy``.
73
73
74
74
.. code-block:: bash
75
75
76
-
$ python3 -m pip install oracle-ads[data]
76
+
$ python3 -m pip install "oracle-ads[data]"
77
77
78
78
To work with geospatial data install the ``geo`` module. It includes the ``geopandas`` and libraries from the ``viz`` module.
79
79
80
80
.. code-block:: bash
81
81
82
-
$ python3 -m pip install oracle-ads[geo]
82
+
$ python3 -m pip install "oracle-ads[geo]"
83
83
84
84
Install the ``notebook`` module to use ADS within the Oracle Cloud Infrastructure Data Science service `Notebook Session <https://docs.oracle.com/en-us/iaas/data-science/using/manage-notebook-sessions.htm>`_. This module installs ``ipywidgets`` and ``ipython`` libraries.
85
85
86
86
.. code-block:: bash
87
87
88
-
$ python3 -m pip install oracle-ads[notebook]
88
+
$ python3 -m pip install "oracle-ads[notebook]"
89
89
90
90
To work with ONNX-compatible run times and libraries designed to maximize performance and model portability, install the ``onnx`` module. It includes the following libraries, ``onnx``, ``onnxruntime``, ``onnxmltools``, ``skl2onnx``, ``xgboost``, ``lightgbm`` and libraries from the ``viz`` module.
91
91
92
92
.. code-block:: bash
93
93
94
-
$ python3 -m pip install oracle-ads[onnx]
94
+
$ python3 -m pip install "oracle-ads[onnx]"
95
95
96
96
For infrastructure tasks, install the ``opctl`` module. It includes the following libraries, ``oci-cli``, ``docker``, ``conda-pack``, ``nbconvert``, ``nbformat``, and ``inflection``.
97
97
98
98
.. code-block:: bash
99
99
100
-
$ python3 -m pip install oracle-ads[opctl]
100
+
$ python3 -m pip install "oracle-ads[opctl]"
101
101
102
102
For hyperparameter optimization tasks install the ``optuna`` module. It includes the ``optuna`` and libraries from the ``viz`` module.
103
103
104
104
.. code-block:: bash
105
105
106
-
$ python3 -m pip install oracle-ads[optuna]
106
+
$ python3 -m pip install "oracle-ads[optuna]"
107
107
108
108
For Spark tasks install the ``spark`` module.
109
109
110
110
.. code-block:: bash
111
111
112
-
$ python3 -m pip install oracle-ads[spark]
112
+
$ python3 -m pip install "oracle-ads[spark]"
113
113
114
114
Install the ``tensorflow`` module to include ``tensorflow`` and libraries from the ``viz`` module.
115
115
116
116
.. code-block:: bash
117
117
118
-
$ python3 -m pip install oracle-ads[tensorflow]
118
+
$ python3 -m pip install "oracle-ads[tensorflow]"
119
119
120
120
For text related tasks, install the ``text`` module. This will include the ``wordcloud``, ``spacy`` libraries.
121
121
122
122
.. code-block:: bash
123
123
124
-
$ python3 -m pip install oracle-ads[text]
124
+
$ python3 -m pip install "oracle-ads[text]"
125
125
126
126
Install the ``torch`` module to include ``pytorch`` and libraries from the ``viz`` module.
127
127
128
128
.. code-block:: bash
129
129
130
-
$ python3 -m pip install oracle-ads[torch]
130
+
$ python3 -m pip install "oracle-ads[torch]"
131
131
132
132
Install the ``viz`` module to include libraries for visualization tasks. Some of the key packages are ``bokeh``, ``folium``, ``seaborn`` and related packages.
133
133
134
134
.. code-block:: bash
135
135
136
-
$ python3 -m pip install oracle-ads[viz]
136
+
$ python3 -m pip install "oracle-ads[viz]"
137
137
138
138
See ``pyproject.toml`` file ``[project.optional-dependencies]`` section for full list of modules and its list of extra libraries.
139
139
@@ -143,4 +143,4 @@ Multiple extra dependencies can be installed together. For example:
Ensure that you have properly configured your conda pack namespace and bucket in the Launcher -> Settings -> Object Storage Settings. For more details, see :doc:`ADS Conda Set Up <../../cli/opctl/configure>`
Ensure that you have properly configured your conda pack namespace and bucket in the Launcher -> Settings -> Object Storage Settings. For more details, see :doc:`ADS Conda Set Up <../../cli/opctl/configure>`
0 commit comments