From 3243f4922e9001040347b7be91bcab03306ec959 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Thu, 3 Jan 2013 17:57:28 +0000 Subject: [PATCH] fix upgrade all oneliner Now does not cause "Double requirement given" error --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index aadc8f2..5981588 100644 --- a/README.rst +++ b/README.rst @@ -85,7 +85,7 @@ Tips and Tricks Warning: You only want to do this inside a virtualenv. If you're using Linux, use your package manager to install Python packages globally whenever possible. Think twice before upgrading all packages system-wide on OSX. - $ pip install -U `yolk -U | awk '{print $1}'` + $ pip install -U `yolk -U | awk '{print $1}' | uniq`