From 0257183c00689ef1a3b4c38df97100e4f10bcd13 Mon Sep 17 00:00:00 2001 From: Yifan Zhao <yifanz16@illinois.edu> Date: Fri, 26 Mar 2021 13:12:00 -0500 Subject: [PATCH] pip -> pip3 --- hpvm/docs/README.md | 2 +- hpvm/docs/components/keras-benchmarks.rst | 2 +- hpvm/projects/torch2hpvm/README.rst | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hpvm/docs/README.md b/hpvm/docs/README.md index 7ea7dea380..c93b7ed151 100644 --- a/hpvm/docs/README.md +++ b/hpvm/docs/README.md @@ -7,7 +7,7 @@ We use Sphinx for generating the API and reference documentation. Install the following Python packages needed to build the documentation by entering: ```bash -pip install sphinx sphinx-autodoc-typehints sphinx-rtd-theme numpydoc +pip3 install sphinx sphinx-autodoc-typehints sphinx-rtd-theme numpydoc ``` To build the HTML documentation, enter:: diff --git a/hpvm/docs/components/keras-benchmarks.rst b/hpvm/docs/components/keras-benchmarks.rst index 31a8d7bc92..fe6a6414e2 100644 --- a/hpvm/docs/components/keras-benchmarks.rst +++ b/hpvm/docs/components/keras-benchmarks.rst @@ -174,4 +174,4 @@ Automated Tests .. code-block:: - python test_benchmarks.py + python3 test_benchmarks.py diff --git a/hpvm/projects/torch2hpvm/README.rst b/hpvm/projects/torch2hpvm/README.rst index 7d1aeae3a8..e36e832045 100644 --- a/hpvm/projects/torch2hpvm/README.rst +++ b/hpvm/projects/torch2hpvm/README.rst @@ -12,12 +12,12 @@ PyTorch Frontend for HPVM Installation ------------ -``pip`` is the recommended package manager (also available within ``conda``). -Using ``pip``: +``pip3`` is the recommended package manager (also available within ``conda``). +Using ``pip3``: .. code-block:: bash - pip install -e ./ + pip3 install -e ./ Getting Started --------------- -- GitLab