You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add `pyproject.toml` and `setup.cfg` for PEP 517/518 support
* Add `weights_only=False` for `torch.load` (torch>=2.6)
* Add missing dependencies in `requirements.txt`
* Add `clean.sh` for cleaning up build artifacts
* Update `INSTALL.md` for installation instructions
Copy file name to clipboardExpand all lines: docs/INSTALL.md
+13-4Lines changed: 13 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,15 @@
2
2
3
3
### Requirements
4
4
All the codes are tested in the following environment:
5
-
* Linux (tested on Ubuntu 14.04/16.04/18.04/20.04/21.04)
5
+
* Linux (tested on Ubuntu 14.04/16.04/18.04/20.04/21.04/24.04)
6
6
* Python 3.6+
7
-
* PyTorch 1.1 or higher (tested on PyTorch 1.1, 1,3, 1,5~1.10)
7
+
* PyTorch 1.1 or higher (tested on PyTorch 1.1, 1,3, 1,5~1.10, 2.8)
8
8
* CUDA 9.0 or higher (PyTorch 1.3+ needs CUDA 9.2+)
9
9
*[`spconv v1.0 (commit 8da6f96)`](https://github.com/traveller59/spconv/tree/8da6f967fb9a054d8870c3515b1b44eca2103634) or [`spconv v1.2`](https://github.com/traveller59/spconv) or [`spconv v2.x`](https://github.com/traveller59/spconv)
10
10
11
11
12
12
### Install `pcdet v0.5`
13
-
NOTE: Please re-install `pcdet v0.5` by running `python setup.py develop` even if you have already installed previous version.
13
+
NOTE: Please re-install `pcdet v0.5` by running `pip install -e .` even if you have already installed previous version.
14
14
15
15
a. Clone this repository.
16
16
```shell
@@ -34,5 +34,14 @@ b. Install the dependent libraries as follows:
34
34
35
35
c. Install this `pcdet` library and its dependent libraries by running the following command:
36
36
```shell
37
-
python setup.py develop
37
+
pip install -e .
38
+
```
39
+
* To build the wheel only, run the following command:
40
+
```shell
41
+
pip install build
42
+
python -m build --wheel
43
+
```
44
+
* To install the built wheel, run the following command:
0 commit comments