# How to start Pluto with a specified notebook?

**URL:** https://discourse.julialang.org/t/how-to-start-pluto-with-a-specified-notebook/108665
**Category:** Pluto
**Created:** [January 11, 2024, 9:12am UTC](https://discourse.julialang.org/t/how-to-start-pluto-with-a-specified-notebook/108665 "2024-01-11T09:12:31Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![ddrake](https://avatars.discourse-cdn.com/v4/letter/d/54ee81/32.png) [@ddrake](https://discourse.julialang.org/u/ddrake)
#### Post date: [January 11, 2024, 9:12am UTC](https://discourse.julialang.org/t/how-to-start-pluto-with-a-specified-notebook/108665/1 "2024-01-11T09:12:32Z")

</div>

I have a Pluto notebook source file – say, `my_notebook.jl` and would like to start the notebook. I’d expect something like this would work:

```
$ julia -e 'using Pluto; Pluto.run("my_notebook.jl")'

```

but of course it doesn’t. Is there any way to start Pluto and directly load a specified source file / notebook?

---

<div class="post-metadata">

### Author: ![nilshg](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/nilshg/32/2283_2.png) [@nilshg](https://discourse.julialang.org/u/nilshg)
#### Post date: [January 11, 2024, 9:42am UTC](https://discourse.julialang.org/t/how-to-start-pluto-with-a-specified-notebook/108665/2 "2024-01-11T09:42:24Z")

</div>

It’s

```julia
Pluto.run(notebook="my_notebook.jl")

```
