@@ -36,7 +36,7 @@ quickly.
3636 available. The version of Python to be used depends on the operating system (OS):
3737
3838 - On Windows, use Python 3.7 to 3.10
39- - On macOS, use Python 3.8 to 3.10
39+ - On macOS, use Python 3.7 to 3.10
4040 - On Linux, use Python 3.6 to 3.10
4141
4242 By default, python-oracledb connects directly to Oracle Database. This lets
@@ -153,7 +153,7 @@ To use python-oracledb, you need:
153153- Python 3.6, 3.7, 3.8, 3.9 or 3.10 depending on the operating system:
154154
155155 - Windows: Use Python 3.7 to 3.10
156- - macOS: Use Python 3.8 to 3.10
156+ - macOS: Use Python 3.7 to 3.10
157157 - Linux: Use Python 3.6 to 3.10
158158
159159- The Python cryptography package. This package is automatically installed as a
@@ -614,8 +614,9 @@ Python architecture.
614614 Installing python-oracledb on macOS
615615===================================
616616
617- Python-oracledb is available a Universal binary for Apple Intel and M1
618- architectures.
617+ Python-oracledb is available as a Universal binary for Python 3.8, or later, on
618+ Apple Intel and M1 architectures. A binary is also available for Python 3.7 on
619+ Apple Intel.
619620
620621Install python-oracledb
621622-----------------------
@@ -628,17 +629,20 @@ to install python-oracledb from Python's package repository `PyPI
628629
629630 python -m pip install oracledb
630631
631-
632- To install into the system Python, you may need to use ``/usr/bin/python3 ``
633- instead of ``python ``.
634-
635632 The ``--user `` option may be useful if you do not have permission to write to
636633system directories:
637634
638635.. code-block :: shell
639636
640637 python -m pip install oracledb --user
641638
639+ To install into the system Python, you may need to use ``/usr/bin/python3 ``
640+ instead of ``python ``:
641+
642+ .. code-block :: shell
643+
644+ /usr/bin/python3 -m pip install oracledb --user
645+
642646 If you are behind a proxy, add a proxy server to the command, for example add
643647``--proxy=http://proxy.example.com:80 ``
644648
@@ -652,8 +656,8 @@ By default, python-oracledb runs in a Thin mode which connects directly to
652656Oracle Database so no further installation steps are required. However, to use
653657additional features available in :ref: `Thick mode <featuresummary >` you need
654658Oracle Client libraries installed. Note that to use Thick mode on the M1
655- architecture you will need to use Rosetta with Python x64 and the Instant
656- Client (Intel x64 ) libraries.
659+ architecture you will need to use Rosetta with Python 64-bit Intel and the
660+ Instant Client (Intel x86 ) libraries.
657661
658662Manual Installation
659663+++++++++++++++++++
0 commit comments