File tree Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -51,5 +51,6 @@ Contents
51
51
.. toctree ::
52
52
:maxdepth: 3
53
53
54
+ installation
55
+ changes
54
56
api
55
- changes
Original file line number Diff line number Diff line change
1
+ Installation
2
+ ============
3
+ *NiTransforms * is distributed via *Pypi * and can easily be installed
4
+ within your Python distribution with::
5
+
6
+ python -m pip install nitransforms
7
+
8
+ Alternatively, you can install the bleeding-edge version of the software
9
+ directly from the GitHub repo with::
10
+
11
+ python -m pip install git+https://github.com/poldracklab/nitransforms.git@master
12
+
13
+ To verify the installation, you can run the following command::
14
+
15
+ python -c "import nitransforms as nt; print(nt.__version__)"
16
+
17
+ You should see the version number.
18
+
19
+ Developers
20
+ ----------
21
+ Advanced users and developers who plan to contribute with bugfixes, documentation,
22
+ etc. can first clone our Git repository::
23
+
24
+ git clone https://github.com/poldracklab/nitransforms.git
25
+
26
+
27
+ and install the tool in *editable * mode::
28
+
29
+ cd nitransforms
30
+ python -m pip install -e .
You can’t perform that action at this time.
0 commit comments