From d3340079c7feb8db74cdedfa1499948af4d7360f Mon Sep 17 00:00:00 2001 From: James Lamb Date: Fri, 5 Jan 2024 11:31:11 -0800 Subject: [PATCH] remove references to setup.py in docs --- CONTRIBUTING.md | 2 +- README.md | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 61ac5873a..e24b94f14 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -37,7 +37,7 @@ are required. To set up a development environment, follow the steps in the [README](https://github.com/rapidsai/rmm/blob/main/README.md) for cloning the repository and creating the conda environment. Once the environment is created, you can build and install RMM using ```bash -$ python setup.py develop +$ python -m pip install ./python ``` This command will build the RMM Python library inside the clone and automatically make it importable when running Python anywhere on your machine. Remember, if you are unsure about anything, don't hesitate to comment on issues diff --git a/README.md b/README.md index 5aa7daab9..e033ef56f 100644 --- a/README.md +++ b/README.md @@ -127,8 +127,7 @@ $ make test - Build, install, and test the `rmm` python package, in the `python` folder: ```bash -$ python setup.py build_ext --inplace -$ python setup.py install +$ python -m pip install -e ./python $ pytest -v ```