iMac + Inkscape = Learning Opportunities

My Desk - 2010 MacBook Pro & 2019 iMac (and a Cat Mom tea cup)

My Desk - 2010 MacBook Pro & 2019 iMac (and a Cat Mom tea cup)

Last month we purchased an iMac, my MacBook Pro was sorely out of date (c. 2010) and needed updating. All of the graphic applications from the Creative Cloud to OpenSource required new hardware and software.

At the top of my list of things I needed to install was the open source program Inkscape, a vector graphics editor. My intent is to use it to create Material Design icons for our various products - and get a little branding in too.

Easy, Yes?

Getting Inkscape up and running for Material Design work was more like Sisyphus and his rock.

First - Inkscape needs the iOS dev app Xcode to run (no problem needed that anyway), then it needed MacPorts - okay found that and now I needed something called Xorg. MacPorts was the recommended source for Xorg (careful here, they mention there are outdated versions and recommend going through MacPorts to get the most updated version).

Then back to Inkscape to see how all this fit together - Xcode was the only thing I installed that went though the normal “plug and play” routine - and that I could see in Applications. Everything else was a black box.

Back to Inkscape to see what I needed to do next…. Terminal?

Terminal, for those who don’t know, is a way of accessing the Mac operating system. It works with command line code. You can find Terminal by going to Launchpad > Other > Terminal

We needed to install both Inkscape and xorg-server from the Terminal using the command line:

sudo port install inkscape
sudo port install xorg-server

…and if we wanted to see Inkscape as a link in the Applications section we needed a little bit more code to make that happen.

ln -s /opt/local/bin/inkscape /Applications/Inkscape

If, like me, you’ve never used the Terminal on your Mac or command line - here is enough to get you to your installation. Terminal will pop up with last login, the name of your Mac, and the log on followed by a $. You will be asked your computer login (caps matter)

Last login: Thu Jul  4 08:59:18 on ttys000
TandR-iMac:~ tess.robert$
sudo port install inkscape
<< there will be a passowrd request and lots of code will run - I mean LOTS of Code, just chill and let it work>> 
sudo port install xorg-server
<< another password request and more code will run, if AM - go maake a cup of coffe, if PM - I'd go for a beer>> 
((Finally))
ln -s /opt/local/bin/inkscape /Applications/Inkscape
Sisyphus by Titian 1549, Source Wiki Commons Prado Museum, Madrid, Spain

Sisyphus by Titian 1549, Source Wiki Commons Prado Museum, Madrid, Spain

Okay - Good to go, part one is done…

Now, to prep for Material Design.

… and the rock rolls down hill, again

~ T