diff --git a/docs/install/core-install.rst b/docs/install/core-install.rst index 18b6316c3..12985b4e9 100644 --- a/docs/install/core-install.rst +++ b/docs/install/core-install.rst @@ -46,9 +46,9 @@ installation. .. note:: - ROCm Compute Profiler will use the first version of ``Python3`` found in your system's - ``PATH``. If the default version of Python3 is older than 3.8, you may need to - update your system's ``PATH`` to point to a newer version of Python3. + ROCm Compute Profiler will use the first version of ``python3`` found in your system's + ``PATH``. If the default version of Python is older than 3.8, you may need to + update your system's ``PATH`` to point to a newer version. ROCm Compute Profiler depends on a number of Python packages documented in the top-level ``requirements.txt`` file. Install these *before* configuring ROCm Compute Profiler. @@ -74,7 +74,7 @@ shared location controlled by the ``INSTALL_DIR`` environment variable. .. tip:: - To always run ROCm Compute Profiler with a particular version of python, you can create a + To always run ROCm Compute Profiler with a particular version of Python, you can create a bash alias. For example, to run ROCm Compute Profiler with Python 3.10, you can run the following command: diff --git a/docs/install/grafana-setup.rst b/docs/install/grafana-setup.rst index c7b6b6557..1405aecf9 100644 --- a/docs/install/grafana-setup.rst +++ b/docs/install/grafana-setup.rst @@ -79,6 +79,13 @@ directory to begin. $ sudo docker-compose build $ sudo docker-compose up -d +.. note:: + + To troubleshoot Docker container build failures related to certificate verification, try + disabling any network proxy services on the host system. These proxy services can interfere + with OpenSSL's ability to retrieve a correct certificate chain when the container accesses + external websites. + The TCP ports for Grafana (``4000``) and MongoDB (``27017``) in the Docker container are mapped to ``14000`` and ``27018``, respectively, on the host side. diff --git a/docs/sphinx/static/css/o_custom.css b/docs/sphinx/static/css/o_custom.css index a6cbe5718..b4fe010b5 100644 --- a/docs/sphinx/static/css/o_custom.css +++ b/docs/sphinx/static/css/o_custom.css @@ -1,30 +1,8 @@ -:root { - --amd-teal-500: #00C2DE; - --amd-teal-750: #00788E; -} - /* Override PyData Sphinx Theme default colors */ html[data-theme='light'] { - --pst-color-primary: var(--amd-teal-750); - --pst-color-primary-bg: var(--amd-teal-500); --pst-color-table-row-hover-bg: #E2E8F0; } html[data-theme='dark'] { - --pst-color-primary: var(--amd-teal-500); - --pst-color-primary-bg: var(--amd-teal-750); --pst-color-table-row-hover-bg: #1E293B; } - -html[data-theme='light'], -html[data-theme='dark'] { - --pst-color-link: var(--pst-color-primary); -} - -a svg { - color: var(--pst-color-text-base); -} - -a svg:hover { - color: var(--pst-color-link-hover); -}