From fcb7b6dda16724b7fa42122bb8ea72bdad6a461e Mon Sep 17 00:00:00 2001 From: BuhtigithuB Date: Sat, 8 Dec 2018 13:56:08 -0500 Subject: [PATCH] pip instead of easy_install simpler lib management apt-get -> apt in ubuntu 16.04+ --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f945c57c..248a2ba0 100644 --- a/README.md +++ b/README.md @@ -47,14 +47,14 @@ The build caches .png files out of the .svg files to improve performance. To ena On Ubuntu: -* Run sudo easy_install pysvg to install python svg libraries -* Run sudo apt-get install librsvg2-bin to install rsvg-convert -* Run sudo apt-get install imagemagick to install ImageMagick +* Run sudo pip install pysvg to install python svg libraries +* Run sudo apt install librsvg2-bin to install rsvg-convert +* Run sudo apt install imagemagick to install ImageMagick On OS X: * Install [Homebrew](http://brew.sh). -* Run sudo easy_install pysvg to install python svg libraries +* Run sudo pip install pysvg to install python svg libraries * Run brew install librsvg to install rsvg-convert * Run brew install imagemagick to install ImageMagick