# The following package names could not be resolved: \* Makie (not found in project, manifest or registry)

**URL:** https://discourse.julialang.org/t/the-following-package-names-could-not-be-resolved-makie-not-found-in-project-manifest-or-registry/48682
**Category:** General Usage
**Tags:** package
**Created:** [October 20, 2020, 1:00pm UTC](https://discourse.julialang.org/t/the-following-package-names-could-not-be-resolved-makie-not-found-in-project-manifest-or-registry/48682 "2020-10-20T13:00:03Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![zlq178](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/zlq178/32/17952_2.png) [@zlq178](https://discourse.julialang.org/u/zlq178)
#### Post date: [October 20, 2020, 1:00pm UTC](https://discourse.julialang.org/t/the-following-package-names-could-not-be-resolved-makie-not-found-in-project-manifest-or-registry/48682/1 "2020-10-20T13:00:04Z")

</div>

I want to add “Makie” package,But it shows me such error:  
The following package names could not be resolved: \* Makie (not found in project, manifest or registry)  
My Julia version is 1.5.1-1  
How can I solve it?

---

<div class="post-metadata">

### Author: ![hendri54](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/hendri54/32/9621_2.png) [@hendri54](https://discourse.julialang.org/u/hendri54)
#### Post date: [October 20, 2020, 7:44pm UTC](https://discourse.julialang.org/t/the-following-package-names-could-not-be-resolved-makie-not-found-in-project-manifest-or-registry/48682/2 "2020-10-20T19:44:46Z")

</div>

You may have to post more details, such as the command that you issued and the exact error message that was shown. In the past, this error has resulted from typos in the package name (e.g. [ERROR: The following package names could not be resolved: Pyplot](https://discourse.julialang.org/t/error-the-following-package-names-could-not-be-resolved-pyplot/36726))

---

<div class="post-metadata">

### Author: ![lsorkatti](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/lsorkatti/32/36527_2.png) [@lsorkatti](https://discourse.julialang.org/u/lsorkatti)
#### Post date: [May 28, 2022, 10:20am UTC](https://discourse.julialang.org/t/the-following-package-names-could-not-be-resolved-makie-not-found-in-project-manifest-or-registry/48682/3 "2022-05-28T10:20:50Z")

</div>

I have a similar problem as follows:

I. (@v1.7) pkg\> add LabelledPetriNet;

ERROR: The following package names could not be resolved:

- LabelledPetriNet (not found in project, manifest or registry)

II. julia\> Pkg.add(“LabelledPetri”);  
ERROR: The following package names could not be resolved:

- LabelledPetri (not found in project, manifest or registry)

Any suggestions?

---

<div class="post-metadata">

### Author: ![giordano](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/giordano/32/2166_2.png) [@giordano](https://discourse.julialang.org/u/giordano)
#### Post date: [May 28, 2022, 10:37am UTC](https://discourse.julialang.org/t/the-following-package-names-could-not-be-resolved-makie-not-found-in-project-manifest-or-registry/48682/4 "2022-05-28T10:37:11Z")

</div>

> [@lsorkatti](#):
>
> Any suggestions?

There is _ **no** _ package called `LabelledPetriNet` nor `LabelledPetri` in the latest version of the [General registry](https://github.com/JuliaRegistries/General/blob/4d856577db6cef348da2d062e8856a483d718009/Registry.toml). I have no idea where this package you want to install is coming from, but in general you can install a package with its URL, if it isn’t available in a registry:

```julia
]add URL_OF_THE_REPOSITORY

```
