# BaseBenchmarks.jl not in registry?

**URL:** https://discourse.julialang.org/t/basebenchmarks-jl-not-in-registry/33557
**Category:** Performance
**Created:** [January 19, 2020, 7:18pm UTC](https://discourse.julialang.org/t/basebenchmarks-jl-not-in-registry/33557 "2020-01-19T19:18:35Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![mthelm85](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mthelm85/32/224164_2.png) [@mthelm85](https://discourse.julialang.org/u/mthelm85)
#### Post date: [January 19, 2020, 7:18pm UTC](https://discourse.julialang.org/t/basebenchmarks-jl-not-in-registry/33557/1 "2020-01-19T19:18:35Z")

</div>

When I try to add this package, I get the following error:

```julia
(v1.3) pkg> add BaseBenchmarks
ERROR: The following package names could not be resolved:
 * BaseBenchmarks (not found in project, manifest or registry)
Please specify by known `name=uuid`.

```

I was hoping to benchmark some Julia code on a new PC I just built. Any ideas as to what’s going on here?

---

<div class="post-metadata">

### Author: ![stevengj](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/stevengj/32/71_2.png) [@stevengj](https://discourse.julialang.org/u/stevengj)
#### Post date: [January 19, 2020, 7:59pm UTC](https://discourse.julialang.org/t/basebenchmarks-jl-not-in-registry/33557/2 "2020-01-19T19:59:11Z")

</div>

You can always `add https://github.com/JuliaCI/BaseBenchmarks.jl` without using a registry.

(BaseBenchmarks.jl is mainly used for performance-regression testing in the development of Julia itself, via [Nanosoldier](https://github.com/JuliaCI/Nanosoldier.jl); it is not a package that most people will want to install themselves.)

If you want to benchmark your _own_ code, I would recommend the BenchmarkTools package (which _is_ registered).
