6
6
7
7
This page covers the necessary steps to install Nipype.
8
8
9
- Download
10
- --------
9
+ Nipype for users
10
+ ----------------
11
11
12
- Current release: `<https://github.com/nipy/nipype/releases/latest >`_.
12
+ Using conda
13
+ ~~~~~~~~~~~
13
14
14
- Development version: [`zip <http://github.com/nipy/nipype/zipball/master >`__ `tar.gz
15
- <http://github.com/nipy/nipype/tarball/master> `__]
15
+ Installing nipype from the conda-forge channel can be achieved by adding conda-forge to your channels with::
16
16
17
- ` Prior downloads < http://github.com/nipy/nipype/tags >`_
17
+ conda config --add channels conda-forge
18
18
19
- To check out the latest development version::
20
19
21
- git clone git://github.com/nipy/nipype.git
20
+ Once the conda-forge channel has been enabled, nipype can be installed with::
22
21
23
- or::
22
+ conda install nipype
24
23
25
- git clone https://github.com/nipy/nipype.git
26
24
27
- Check out the list of nipype's `current dependencies <https://github.com/shoshber/nipype/blob/master/nipype/info.py#L105 >`_.
25
+ It is possible to list all of the versions of nipype available on your platform with::
26
+
27
+ conda search nipype --channel conda-forge
28
+
29
+ For more information, please see https://github.com/conda-forge/nipype-feedstock
28
30
29
- Install
30
- -------
31
+
32
+ Using Pypi
33
+ ~~~~~~~~~~
31
34
32
35
The installation process is similar to other Python packages.
33
36
34
37
If you already have a Python environment set up, you can do::
35
38
36
- easy_install nipype
39
+ easy_install nipype
37
40
38
41
or::
39
42
40
- pip install nipype
43
+ pip install nipype
44
+
41
45
42
46
Debian and Ubuntu
43
47
~~~~~~~~~~~~~~~~~
@@ -52,19 +56,49 @@ Mac OS X
52
56
The easiest way to get nipype running on Mac OS X is to install Anaconda _ or
53
57
Canopy _ and then add nipype by executing::
54
58
55
- easy_install nipype
59
+ easy_install nipype
60
+
56
61
57
62
From source
58
63
~~~~~~~~~~~
59
64
65
+ The current release is found here: `<https://github.com/nipy/nipype/releases/latest >`_.
66
+
67
+ The development version: [`zip <http://github.com/nipy/nipype/zipball/master >`__ `tar.gz
68
+ <http://github.com/nipy/nipype/tarball/master> `__]
69
+
70
+ For previous versions: `prior downloads <http://github.com/nipy/nipype/tags >`_
71
+
60
72
If you downloaded the source distribution named something
61
73
like ``nipype-x.y.tar.gz ``, then unpack the tarball, change into the
62
74
``nipype-x.y `` directory and install nipype using::
63
75
64
- pip install -e .
76
+ pip install -r requirements.txt
77
+ python setup.py install
65
78
66
79
**Note: ** Depending on permissions you may need to use ``sudo ``.
67
80
81
+
82
+ Nipype for developers
83
+ ---------------------
84
+
85
+ To check out the latest development version::
86
+
87
+ git clone git://github.com/nipy/nipype.git
88
+
89
+ or::
90
+
91
+ git clone https://github.com/nipy/nipype.git
92
+
93
+ After cloning::
94
+
95
+ pip install -r requirements.txt
96
+ python setup.py develop
97
+
98
+
99
+ Check out the list of nipype's `current dependencies <https://github.com/nipy/nipype/blob/master/requirements.txt >`_.
100
+
101
+
68
102
Testing the install
69
103
-------------------
70
104
@@ -166,10 +200,14 @@ Nipy_
166
200
Nitime _
167
201
(optional)
168
202
203
+ ANTS _
204
+
205
+ MRtrix _ and MRtrix3 _
206
+
169
207
Camino _
170
208
171
209
Camino2Trackvis _
172
210
173
211
ConnectomeViewer _
174
212
175
- .. include :: ../links_names.txt
213
+ .. include :: ../links_names.txt
0 commit comments