Hacker News new | ask | show | jobs
by nerdponx 1883 days ago
That's good to know. But I was talking about the package manager and starting the Pluto server.
1 comments

You can start pluto server from command line

> julia -e "using Pluto; Pluto.run()"

Also, package manager can be used from inside Pluto. To install somethin, you can just write in a cell

> using Pkg

> Pkg.add("Package Name")