-
Notifications
You must be signed in to change notification settings - Fork 33
/
INSTALL
56 lines (33 loc) · 1.11 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
This is a bare-bones explanation of how to install Demeter from
source.
Install Ifeffit
===============
Download Ifeffit from http://cars9.uchicago.edu/ifeffit/Downloads
Unpack the tarball, cd into the new directory, then
a. Install PGPLOT:
sudo ./PGPLOT_install
b. Install Ifeffit:
./configure
make
sudo make install
Install Demeter
===============
Download Demeter from github:
git clone git://github.com/bruceravel/demeter.git
cd into the demeter directory and do
perl -I. Build.PL
sudo ./Build installdeps
This step is quite time consuming the first time you install Demeter.
Several dozen Perl dependencies will be downloaded, built, and
installed. Answer "yes" to every question you are asked.
Once finished, do
perl -I. Build.PL
again to verify that all the dependencies are in place. Then do
./Build
sudo ./Build install
More information
================
Here is a much more complete explanation of the installation process:
https://gist.github.com/3959252
It is tailored to an Ubuntu system, but should provide insight to anyone
installing from source.