Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bilby
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lscsoft
bilby
Commits
6eb17505
Commit
6eb17505
authored
7 years ago
by
Gregory Ashton
Browse files
Options
Downloads
Patches
Plain Diff
Update of setup.py, requirements and README
parent
b59b5163
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+34
-1
34 additions, 1 deletion
README.md
requirements.txt
+9
-0
9 additions, 0 deletions
requirements.txt
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
44 additions
and
2 deletions
README.md
+
34
−
1
View file @
6eb17505
# PEYOte
Fulfilling all your GW dreams.
\ No newline at end of file
Fulfilling all your GW dreams.
In the following, we assume you have installed
[
pip
](
https://pip.pypa.io/en/stable/installing/
)
and
[
git
](
https://git-scm.com/
)
.
First, clone the repository, install the requirements, and then install
`Peyote`
.
```
bash
$
git clone git@github.com:plasky/PEYOte.git
$
pip
install
-r
requirements.txt
$
python setup.py
install
```
Once you have run these three steps, you have
`Peyote installed`
. However, you
aren't quite yet ready to run anything. First,
`pymultinest`
needs the MultiNest library to be installed to work properly. The
full instructions can be found
[
here
](
https://johannesbuchner.github.io/PyMultiNest/install.html
)
. We have
also written
[
a shortened tl;dr here
](
./TLDR_MULTINEST.md
)
.
Second, you need
`lalsimulation`
from
`lalsuite`
installed. To do this head
to
[
https://git.ligo.org/lscsoft/lalsuite
](
https://git.ligo.org/lscsoft/lalsuite
)
to check you have an account and SSH keys set up. Then,
```
bash
$
git lfs
install
$
git clone git@git.ligo.org:lscsoft/lalsuite.git
$
cd
lalsuite
$
./00boot
$
./configure
--prefix
=
${
HOME
}
/lalsuite-install
--disable-all-lal
--enable-swig
--enable-lalsimulation
$
make
;
make
install
```
**
warning
**
: in the configure line here, we have disabled everything except lalsimulation. If you need other modules, see
`./configure --help`
.
This diff is collapsed.
Click to expand it.
requirements.txt
+
9
−
0
View file @
6eb17505
numpy
matplotlib
>=1.4
scipy
gwpy
pandas
pymultinest
gwsurrogate
NRSur7dq2
chainconsumer
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
6eb17505
...
...
@@ -2,7 +2,7 @@
from
distutils.core
import
setup
setup
(
name
=
'
PEYO
te
'
,
setup
(
name
=
'
peyo
te
'
,
version
=
'
0.1
'
,
packages
=
[
'
peyote
'
],
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment