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 ```