julia> Pkg.rm("Rif")
INFO: No packages to install, update or remove
INFO: Package database updated

julia> Pkg.status()
2 required packages:
 - DataFrames                    0.5.6
 - Distributions                 0.5.2
25 additional packages:
 - Rif                           0.0.0              9066d40d (dirty)

Rif is still there, but marked as "dirty".  Let's try 'resolve'.


julia> Pkg.resolve()
INFO: No packages to install, update or remove

julia> Pkg.status()
 - Rif                           0.0.0              9066d40d (dirty)

Still there!

Try adding it again:


julia> Pkg.add("Rif")
INFO: No packages to install, update or remove
INFO: Package database updated
INFO: METADATA is out-of-date — you may not have the latest version of Rif
INFO: Use `Pkg.update()` to get the latest versions of your packages

julia> Pkg.update()
INFO: Computing changes...
INFO: Upgrading Cairo: v0.2.13 => v0.2.14
INFO: Upgrading Winston: v0.11.0 => v0.11.1
INFO: Building Homebrew
HEAD is now at c588ffb Remove git rebasing code that slipped through
HEAD is now at 1b85de5 Update netcdf bottle
INFO: Building Cairo
INFO: Building Tk

julia> Pkg.status()

Now, finally, it's gone.

Bottom line: 'rm' did not remove the package, but 'add' did... and now
I have no idea how to add it again.

Gustavo


--
Gustavo Lacerda
http://www.optimizelife.com

Reply via email to