-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install script for panoptes dependencies #129
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
11d26a1
wip - Starting on creating some setup scripts. Need to coordinate with
jamessynge 8dc2835
wip - Install cfitsio.
jamessynge 2f539f8
wip - Added download, build and install of astrometry.net, but it fai…
jamessynge 17e1a80
wip - Fix creation of astrometry/data directory.
jamessynge 9d06b89
wip - Added functions for each type of dependenciy to be installed
jamessynge 0dafb45
Installation script for PANOPTES.
jamessynge 0cb3691
Move install script and input files into POCS/scripts/install.
jamessynge 1e688c2
Fix path to requirements.txt.
jamessynge 8d6062a
And fix the requirements.txt path for travis too.
jamessynge a2cbb07
Move requirements.txt back to root of repo.
jamessynge 8873b1b
Write paths to .profile instead of .bashrc.
jamessynge d223d29
Modify data.py to install both sets of index files.
jamessynge b472eea
Fix path in travis.yml.
jamessynge 384b27d
Remove trailing blank line.
jamessynge 5d34a22
Fetch more of the 4100 series indices, needed for some tests that use
jamessynge File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,4 +22,6 @@ codecov | |
ffmpy | ||
pygraphviz | ||
google-cloud-storage | ||
dateparser | ||
dateparser | ||
coveralls | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# This file contains a list of apt packages to install. | ||
# Lines starting with # are comments as are blank lines, | ||
# and # starts trailing comments. | ||
|
||
# dcraw decodes Canon raw images | ||
dcraw | ||
|
||
# gphoto2 enables remote control of cameras, including the Canon DSLRs that | ||
# Panoptes uses. This includes changing many settings and taking pictures. | ||
# We are currently using the published linux package, but that can be quite | ||
# old relative to the latest stable version. gphoto2-updater is an install | ||
# script that we might want to use if we need a newer version. For more info, | ||
# see: https://github.com/gonzalo/gphoto2-updater | ||
gphoto2 | ||
|
||
# Packages needed according to http://astrometry.net/doc/build.html | ||
libbz2-dev | ||
libbz2-dev | ||
libcfitsio-dev | ||
libjpeg-dev | ||
libnetpbm10-dev | ||
libpng12-dev | ||
netpbm | ||
python-dev | ||
python-numpy | ||
python-pyfits | ||
swig | ||
zlib1g-dev | ||
|
||
# Cairo is a graphics library, and matplotlib can use it as a backend | ||
# for rendering. | ||
libcairo2-dev | ||
|
||
# exiftool is used in a couple of places to extract info from the .cr2 file | ||
exiftool | ||
|
||
# We use cfitsio command line tools (e.g. fpack) from POCS, in addition to the | ||
# uses of the cfitsio libraries by astrometry above. | ||
libcfitsio-bin | ||
|
||
# These are used if you want to setup SSH access into the computer (pretty | ||
# darn likely). | ||
openssh-client | ||
openssh-server | ||
|
||
# Graphviz is used for rendering the state machine of POCS. | ||
graphviz | ||
libgraphviz-dev | ||
|
||
# Linux tool used during building and installing software (e.g. astrometry). | ||
pkg-config | ||
|
||
# Improves interaction with pocs_shell (via readline). | ||
libncurses5-dev | ||
|
||
# These support the Python package "Shapely", used in PIAA (called from POCS). | ||
libgeos-3.* | ||
libgeos-c1v5 | ||
libgeos-dev | ||
|
||
# byobu and tmux provide a means to run multiple interactive shells in a way | ||
# that survives disconnection. | ||
byobu | ||
tmux | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like
byobu
comes with Ubuntu server but not desktop. Let's put it in here to make sure we have it. It will pull intmux
also (I think we should default to byobu but will make comments in #97 )There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added byobu & tmux (explicitly).