No fuss Julia and Jupyter Notebook setup on macOS and linux
After installing julia (using the standard curl ... | sh approach), this one-liner does all the project dependency installs, given the existence of a Project.toml file at .:
julia --project=. -e "using Pkg; Pkg.instantiate()"Then, this one-liner runs jupyter within a new conda environment, which is completely self-contained within julia (i.e., no need to install conda first and create a new environment for this project):