Re: [racket-users] Automated method for making racket package installs consistent?

2020-10-12 Thread Sam Tobin-Hochstadt
The list of explicitly-installed packages is available from `raco pkg show`. You could use a script to parse that, or you can use `installed-pkg-table` from `pkg/lib` to get the list in Racket. Sam On Sun, Oct 11, 2020 at 11:03 AM primer wrote: > > On Sunday, October 11, 2020 at 1:35:24 AM

Re: [racket-users] Automated method for making racket package installs consistent?

2020-10-12 Thread schle...@gmail.com
This is just a suggestion, that does not help with your current dilemma, a strategy how you could prevent it in the future: Create or expand your personal dotfile repository, within that repository create a folder my-racket-packages, within that folder create a info.rkt: #lang info (define

Re: [racket-users] Automated method for making racket package installs consistent?

2020-10-11 Thread primer
On Sunday, October 11, 2020 at 1:35:24 AM UTC-7 William J. Bowman wrote: > I'm not sure what you're asking: is your question equivalent to figuring > out which packages are explicitly installed? > That's part of the problem. I have several computers, each with racket installed. I'd like to

Re: [racket-users] Automated method for making racket package installs consistent?

2020-10-11 Thread Robert Postill
Hi Primer, Have you tried raco pkg migrate? I have used this before and it's pretty painless from my POV. The docs are at https://docs.racket-lang.org/pkg/cmdline.html#%28part._raco-pkg-migrate%29. Hope that helps. Robert On Sunday, 11 October 2020 at 19:35:24 UTC+11 William J. Bowman

Re: [racket-users] Automated method for making racket package installs consistent?

2020-10-11 Thread William J. Bowman
I'm not sure what you're asking: is your question equivalent to figuring out which packages are explicitly installed? On Sat, Oct 10, 2020 at 04:04:14PM -0700, primer wrote: > > If I have an an install with packages X and Y installed, and a second > install with packages Y and Z installed, is

[racket-users] Automated method for making racket package installs consistent?

2020-10-10 Thread primer
If I have an an install with packages X and Y installed, and a second install with packages Y and Z installed, is there a way to use raco.exe or some such to get X, Y, and Z installed on both machines without having to figure out "by hand" which packages are missing from each install? -- You