Feature request
It should be easier to create new user projects. Currently you need to do:
mkdir new_project
cd new_project
julia --project="."
using Pkg
pkg"add LinearAlgebra"
prg"add StaticArrays"
This is just an example.
After this new feature is implemented you should be able to do:
julia
using Pkg
Pkg.create_project("new_project", ["LinearAlgebra","StaticArrays"])
This would make it easier to explain to new students how to create a user project.
Perhaps even an interactive dialog could be started if the parameters are missing.