-
Notifications
You must be signed in to change notification settings - Fork 0
/
ports_to_install.txt
62 lines (52 loc) · 1.78 KB
/
ports_to_install.txt
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
56
57
58
59
60
61
62
# running this whole thing through `sudo sh < ports_to_install.txt` should
# create the full distribution of stuff I use
# We install wine early because it needs everything in +universal variants.
# The hope is that this prevents us from doubling our installs.
port install wine
## working environment
# Vim set up for power users
port install vim +cscope +huge +python27 +python35 #only one py3x allowed
port install zsh
# ctags and cscope help browing code, esp. in vim
port install ctags cscope
# compiling dynamiq
port install bison
port install flex
port install gsl
# analysis
port install gawk
port install gsed
# coding
port install git +bash_completion +svn +credential_osxkeychain +doc +pcre +perl5_16 +python27
port install cmake
port install gdb
port install cloc
port install clang-3.9 # needed for openmp, which isn't default with macOS
port install libomp # OpenMP; needed for mdtraj
# TeX install stuff
port install texlive +medium +doc
port install texlive-fonts-extra texlive-formats-extra
port install texlive-generic-extra texlive-latex-extra
# +full variant includes a bunch of languages I don't need; can always add
# other languages as desired
# plotting and making graphics
port install gnuplot +aquaterm +luaterm +pangocairo +wcwidgets +x11
port install grace +universal
port install ImageMagick
port install ffmpeg
port install MPlayer
port install graphviz
# simulating
## install openmm via its binary
port install gromacs
#port install pymol # even this install of pymol fails!
# useful tools
port install htop glances lynx pandoc
port install neomutt # (replaces mutt; req'd by others)
port install gzip p7zip wget
port install tmux
# I don't actually use these so frequently, but it's worth having them
# around on occasion
port install r
port install octave
port install julia