@@ -34,27 +34,27 @@ solving inverse problems in Magnetic Resonance Imaging.
3434
3535Clone and install ` nitorch `
3636``` shell
37- pip install git+https://github.com/balbasty/nitorch
37+ pip install git+https://github.com/balbasty/nitorch#egg=nitorch[all]
3838
3939# Or, alternatively
4040git clone
[email protected] :balbasty/nitorch.git
41- pip install ./nitorch
41+ pip install -e " ./nitorch[all] "
4242```
4343
44- However, this only installs the core dependencies (torch and numpy).
45- If you wish to automatically install dependencies used by, _ e.g._ ,
46- readers and writers, plotters and/or dataset loaders, you can specify
47- the extra tags ` io ` , ` plot ` , ` data ` . Alternatively, the tag ` all `
48- combines all of these dependencies.
44+ To only install the core dependencies (torch and numpy), you can strip the tag ` all ` from the previous command.
4945
5046``` shell
51- pip install git+https://github.com/balbasty/nitorch#egg=nitorch[all]
47+ pip install git+https://github.com/balbasty/nitorch
5248
5349# Or, alternatively
5450git clone
[email protected] :balbasty/nitorch.git
55- pip install -e " ./nitorch[all] "
51+ pip install -e ./nitorch
5652```
5753
54+ If you wish to automatically install dependencies used by specific
55+ readers and writers, plotters and/or dataset loaders, you can specify
56+ the extra tags ` io ` , ` plot ` , ` data ` .
57+
5858You may then start using NITorch in a Python program:
5959``` python
6060import nitorch as ni
0 commit comments