
@proksi21 hi, are you still experiencing the same issue? I probably won’t be of much help since I haven’t used net/http-client
library. You may want to post your issue on the Racker user mailing list https://groups.google.com/forum/#!forum/racket-users/ That list has frequent visitors who may be able to help you with your problem.

is there a raco pkg install --everything-on-the-pkg-server
option/script lying around somewhere?

(Ah, or does anyone have a quick description for how to use the ‘pkg-build’ package…)

@pnwamk You can use raco pkg catalog-archive
to get all the packages in ".zip" form, and then you can do something like raco pkg install *.zip
– although, if I remember correctly, literal raco pkg install *.zip
doesn’t quite work; maybe the ".zip" files don’t have the right name

But it does seem more likely that you want to use pkg-build
. The “documentation” for the package is in comments in “main.rkt”.

@mflatt thanks for the tips!