chenyf
chenyf

Reputation: 5058

How to uninstall a module in Perl 6?

I have two modules installed:

Cro::HTTP:ver<0.7.4>
Cro::HTTP:ver<0.7.5>

And I want to keep 0.7.5 only. Don't know how to uninstall the lower version one.

Upvotes: 5

Views: 313

Answers (1)

nxadm
nxadm

Reputation: 2079

Try this:

zef uninstall "Cro::HTTP:ver<0.7.4>"

(The quotes are important.)

Upvotes: 5

Related Questions