# Installing and using package for rref

**URL:** https://discourse.julialang.org/t/installing-and-using-package-for-rref/2932
**Category:** General Usage
**Created:** [March 28, 2017, 3:51pm UTC](https://discourse.julialang.org/t/installing-and-using-package-for-rref/2932 "2017-03-28T15:51:40Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![monsij](https://avatars.discourse-cdn.com/v4/letter/m/34f0e0/32.png) [@monsij](https://discourse.julialang.org/u/monsij)
#### Post date: [March 28, 2017, 3:51pm UTC](https://discourse.julialang.org/t/installing-and-using-package-for-rref/2932/1 "2017-03-28T15:51:40Z")

</div>

Can someone please help me to install the packages from Windows command line.I want to implement rref functionality. It’s showing non registered beside every package name when I query Pkg.status().I have installed them manually.Currently it’s showing UndefVarError: rref not defined.

---

<div class="post-metadata">

### Author: ![dpsanders](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/dpsanders/32/3573_2.png) [@dpsanders](https://discourse.julialang.org/u/dpsanders)
#### Post date: [March 28, 2017, 3:52pm UTC](https://discourse.julialang.org/t/installing-and-using-package-for-rref/2932/2 "2017-03-28T15:52:50Z")

</div>

What is rref functionality?

What do you mean by “I have installed them manually”?  
Please post the output of `Pkg.status()` and `versioninfo()`.

---

<div class="post-metadata">

### Author: ![kristoffer.carlsson](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/kristoffer.carlsson/32/22_2.png) [@kristoffer.carlsson](https://discourse.julialang.org/u/kristoffer.carlsson)
#### Post date: [March 28, 2017, 3:57pm UTC](https://discourse.julialang.org/t/installing-and-using-package-for-rref/2932/3 "2017-03-28T15:57:13Z")

</div>

R(r)ef: [https://github.com/JuliaLang/julia/pull/9804](https://github.com/JuliaLang/julia/pull/9804)

---

<div class="post-metadata">

### Author: ![PabloZubieta](https://avatars.discourse-cdn.com/v4/letter/p/ee7513/32.png) [@PabloZubieta](https://discourse.julialang.org/u/PabloZubieta)
#### Post date: [March 28, 2017, 3:58pm UTC](https://discourse.julialang.org/t/installing-and-using-package-for-rref/2932/4 "2017-03-28T15:58:28Z")

</div>

There was an `rref` in `Base` but got moved to `RowEchelon.jl`. Do you have it installed? If not, do

```julia
Pkg.add("RowEchelon")
using RowEchelon
# and do whatever with rref

```
