# The endless packages to add as as a dependency or to resolve

**URL:** https://discourse.julialang.org/t/the-endless-packages-to-add-as-as-a-dependency-or-to-resolve/70450
**Category:** New to Julia
**Tags:** question, package, specialfunctions
**Created:** [October 27, 2021, 2:49am UTC](https://discourse.julialang.org/t/the-endless-packages-to-add-as-as-a-dependency-or-to-resolve/70450 "2021-10-27T02:49:22Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Redmusk888](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/redmusk888/32/25498_2.png) [@Redmusk888](https://discourse.julialang.org/u/Redmusk888)
#### Post date: [October 27, 2021, 2:49am UTC](https://discourse.julialang.org/t/the-endless-packages-to-add-as-as-a-dependency-or-to-resolve/70450/1 "2021-10-27T02:49:23Z")

</div>

1.I’m using julia 1.6.3 as my jupyternote kernel.

2.I was learning Linear Algebra on [juliaacademy.com](http://juliaacademy.com) .[https://juliaacademy.com/courses/937702/lectures/17339511](https://juliaacademy.com/courses/937702/lectures/17339511)

3.i got the problem below

 ![question3 2021-10-27 103930](https://global.discourse-cdn.com/julialang/original/3X/b/c/bccca188142b04dd03896c17b7480b1e84a842d7.png)

4.i have been add and resolve those package again and again but it seems endless.

> ┌ Info: Precompiling Images [916415d5-f1e6-5110-898d-aaa5f9f070e0]  
> └ @ Base loading.jl:1342  
> ┌ **Warning: Package SpecialFunctions does not have IrrationalConstants in its dependencies** :  
> │ - If you have SpecialFunctions checked out for development and have  
> │ added IrrationalConstants as a dependency but haven’t updated your primary  
> │ environment’s manifest file, try **`Pkg.resolve()`**.  
> │ - Otherwise you may need to report an issue with SpecialFunctions

1. i hope to solve this problem at once.

---

<div class="post-metadata">

### Author: ![ianshmean](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/ianshmean/32/216042_2.png) [@ianshmean](https://discourse.julialang.org/u/ianshmean)
#### Post date: [October 27, 2021, 3:59am UTC](https://discourse.julialang.org/t/the-endless-packages-to-add-as-as-a-dependency-or-to-resolve/70450/2 "2021-10-27T03:59:02Z")

</div>

The error messaging clearly need improving here, but it appears the problem is that you need to “instantiate”, i.e. install all the packages from, the environment in that repo.

In normal julia run

```julia
pkg> activate /path/to/DataScience

pkg> instantiate

```

or from a Jupyter notebook

```julia
import Pkg
Pkg.activate("/path/to/DataScience")
Pkg.instantiate()

```

@logankilpatrick I see there’s a how to install youtube video, but perhaps the repo readme needs something like above? Though, I’ve only taken a quick look, so may have missed instructions

Edit: Attempts to improve the error messaging → [https://github.com/JuliaLang/julia/pull/42822](https://github.com/JuliaLang/julia/pull/42822)

---

<div class="post-metadata">

### Author: ![Redmusk888](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/redmusk888/32/25498_2.png) [@Redmusk888](https://discourse.julialang.org/u/Redmusk888)
#### Post date: [October 27, 2021, 12:08pm UTC](https://discourse.julialang.org/t/the-endless-packages-to-add-as-as-a-dependency-or-to-resolve/70450/3 "2021-10-27T12:08:00Z")

</div>

It works ! thank you 😁
