Skip to content
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

Add an "install accessories" script #127

Open
recursion-ninja opened this issue Mar 1, 2019 · 1 comment
Open

Add an "install accessories" script #127

recursion-ninja opened this issue Mar 1, 2019 · 1 comment

Comments

@recursion-ninja
Copy link
Collaborator

recursion-ninja commented Mar 1, 2019

PCG outputs several data files intended to be consumed by other programs. It would be very nice for the users if we had a script to install all these utilities for them.

Some nice packages/programs to include would be:

  • graphviz
  • lapack
  • gmplib
  • stdc++
@Boarders
Copy link
Collaborator

Boarders commented Feb 27, 2020

Since this issue was mentioned when I suggested that nix gives one (relatively easy) approach to this kind of issue I should mention here that this can be done in nix via the command (though I don't recommend global installs like this):

nix-env --install graphviz liblapack gmp gcc

Alternatively one can create a fresh shell environment where each of these packages are installed (but not installed globally) via:

nix-shell --packages graphviz liblapack gmp gcc

This might be useful knowledge for quick testing purposes to create an environment with these installed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants