# Installing Plots from Pkg

**URL:** https://discourse.julialang.org/t/installing-plots-from-pkg/100210
**Category:** VS Code
**Tags:** package, plotting
**Created:** [June 12, 2023, 3:47am UTC](https://discourse.julialang.org/t/installing-plots-from-pkg/100210 "2023-06-12T03:47:45Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Shashi\_Samdarshi](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/shashi_samdarshi/32/50689_2.png) [@Shashi\_Samdarshi](https://discourse.julialang.org/u/Shashi_Samdarshi)
#### Post date: [June 12, 2023, 3:47am UTC](https://discourse.julialang.org/t/installing-plots-from-pkg/100210/1 "2023-06-12T03:47:45Z")

</div>

I am getting errors during installing Plots from Pkg

Please guide me.

 ![1](https://global.discourse-cdn.com/julialang/original/3X/3/0/303f5508a565ea3a7a982f67cf50119d7a9f9c53.jpeg)

---

<div class="post-metadata">

### Author: ![gustaphe](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/gustaphe/32/18174_2.png) [@gustaphe](https://discourse.julialang.org/u/gustaphe)
#### Post date: [June 12, 2023, 5:09am UTC](https://discourse.julialang.org/t/installing-plots-from-pkg/100210/2 "2023-06-12T05:09:22Z")

</div>

That looks a lot like [TOML Parse Error when adding package in Julia - Stack Overflow](https://stackoverflow.com/questions/73980718/toml-parse-error-when-adding-package-in-julia) where a shortcut file was used instead of a toml.

Do you need Grisu? Try uninstalling it (`]rm Grisu`), installing plots and then reinstalling Grisu.

---

<div class="post-metadata">

### Author: ![Shashi\_Samdarshi](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/shashi_samdarshi/32/50689_2.png) [@Shashi\_Samdarshi](https://discourse.julialang.org/u/Shashi_Samdarshi)
#### Post date: [June 12, 2023, 4:10pm UTC](https://discourse.julialang.org/t/installing-plots-from-pkg/100210/3 "2023-06-12T16:10:17Z")

</div>

I need assistance.

How can I install it?

---

<div class="post-metadata">

### Author: ![gustaphe](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/gustaphe/32/18174_2.png) [@gustaphe](https://discourse.julialang.org/u/gustaphe)
#### Post date: [June 12, 2023, 4:45pm UTC](https://discourse.julialang.org/t/installing-plots-from-pkg/100210/4 "2023-06-12T16:45:27Z")

</div>

Does this sequence work:

```julia
] rm Grisu
] add Plots
] add Grisu

```

?

(`]` means you press `]` to enter the Pkg prompt. You probably only have to do this once. The alternative is to write `using Pkg; Pkg.rm("Grisu")` etc, but it’s a less nice interface imo)
