# PProf doesnt open in the web

**URL:** https://discourse.julialang.org/t/pprof-doesnt-open-in-the-web/107492
**Category:** New to Julia
**Created:** [December 12, 2023, 10:58am UTC](https://discourse.julialang.org/t/pprof-doesnt-open-in-the-web/107492 "2023-12-12T10:58:17Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Helectus](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/helectus/32/47475_2.png) [@Helectus](https://discourse.julialang.org/u/Helectus)
#### Post date: [December 12, 2023, 10:58am UTC](https://discourse.julialang.org/t/pprof-doesnt-open-in-the-web/107492/1 "2023-12-12T10:58:17Z")

</div>

I try to use PProf but it doesnt seem to open the ui in firefox. The error message is  
profile.pb.gz: malformed profile: found location with reserved id=0  
pprof: failed to fetch any source profiles

I used @profile my\_func()  
PProf.pprof(;webport=58699)

What is the problem? Once, it worked, i have graphikz installed but i cant make it open again…

---

<div class="post-metadata">

### Author: ![pratikvn](https://avatars.discourse-cdn.com/v4/letter/p/67e7ee/32.png) [@pratikvn](https://discourse.julialang.org/u/pratikvn)
#### Post date: [January 6, 2024, 4:43pm UTC](https://discourse.julialang.org/t/pprof-doesnt-open-in-the-web/107492/2 "2024-01-06T16:43:47Z")

</div>

I ran into this issue as well. It seems you need to have `pprof` installed as well. You can install it using go

```julia
go install github.com/google/pprof@latest

```

And then make sure to add the binary to your search path, `$PATH` with

```julia
export PATH="$GOPATH/bin:$PATH"

```

assuming `$GOPATH` is set when you installed `go`.

See `pprof` page: [GitHub - google/pprof: pprof is a tool for visualization and analysis of profiling data](https://github.com/google/pprof#building-pprof) for more details.

After this you should probably restart your julia REPL session.
