|
1 | 1 | # pyrtools: tools for multi-scale image processing |
2 | 2 |
|
3 | 3 | [](https://pypi.org/project/pyrtools/) |
| 4 | +[](https://anaconda.org/conda-forge/pyrtools) |
4 | 5 | [](https://github.com/LabForComputationalVision/pyrtools/blob/main/LICENSE) |
5 | 6 |  |
6 | 7 | [](https://github.com/LabForComputationalVision/pyrtools/actions?query=workflow%3Abuild) |
@@ -42,13 +43,31 @@ repo](https://github.com/LabForComputationalVision/pyrtools) |
42 | 43 |
|
43 | 44 | # Installation |
44 | 45 |
|
45 | | -It's recommended you install from pip: `pip install pyrtools`. |
| 46 | +You can install `pyrtools` using either pip: |
46 | 47 |
|
47 | | -If you wish to install from the main branch, it's still recommended |
48 | | -to use pip, just run `pip install .` (or `pip install -e .` if you |
49 | | -want the changes you make in the directory to be reflected in your |
50 | | -install) from the root directory of this project. The core of this |
51 | | -code is the C code, and the pip install will compile it nicely. |
| 48 | +```sh |
| 49 | +pip install pyrtools |
| 50 | +``` |
| 51 | + |
| 52 | +or conda: |
| 53 | + |
| 54 | +```sh |
| 55 | +conda install pyrtools -c conda-forge |
| 56 | +``` |
| 57 | + |
| 58 | +You may also install from source, directly from the git repository. This is |
| 59 | +largely useful if you are seeking to modify the code or make contributions. To |
| 60 | +do so, clone the repository and run `pip install`. On Mac or Linux, that looks |
| 61 | +like: |
| 62 | + |
| 63 | +``` sh |
| 64 | +git clone https://github.com/LabForComputationalVision/pyrtools.git |
| 65 | +cd pyrtools/ |
| 66 | +pip install . |
| 67 | +``` |
| 68 | + |
| 69 | +You may also want an editable install, `pip install -e .`, in which case changes |
| 70 | +you make in the source code will be reflected in your install. |
52 | 71 |
|
53 | 72 | # Pyramid resources |
54 | 73 |
|
|
0 commit comments