Nick
Nick

Reputation: 11

Julia language lightweight deployment

looking for a way to make julia binary distribution lightweight and include only the minimum files for a serverless use. Typically I remove documentation, any advice ?

Upvotes: 0

Views: 96

Answers (1)

Evgeny
Evgeny

Reputation: 4571

As far as I know there is no portable version of Julia, even though it is known to run on Rapsberry Pi. They seem to be using just one of standard Linux installations.

There were some experimental efforts in a similar setting as yours (link), but compiling your own version of Julia takes a lot of skill.

Deleting documentation is generally not a big gain.

As an idea, if you are to use just a specific package you can try comile it into executable.

Upvotes: 1

Related Questions