Inky Phat not working

Hello. Im very new to Raspberry Pi and just bought new InkyPhat from Pimoroni
After follow all the guide throw the website. I can not get my display to work. Please help. The error showed as below:

pi@raspberrypi:~/Pimoroni/inky/examples $ python name-badge.py --type “phat” --colour “red” --name “Inigo Montoya”
Inky pHAT/wHAT: Hello… my name is:

Use Inky pHAT/wHAT as a personalised name badge!

Traceback (most recent call last):
File “name-badge.py”, line 98, in
inky_display.show()
File “/usr/local/lib/python2.7/dist-packages/inky/inky.py”, line 288, in show
self._update(buf_a, buf_b)
File “/usr/local/lib/python2.7/dist-packages/inky/inky.py”, line 209, in _update
self.setup()
File “/usr/local/lib/python2.7/dist-packages/inky/inky.py”, line 184, in setup
self._spi.open(0, self.cs_pin)
IOError: [Errno 2] No such file or directory
pi@raspberrypi:~/Pimoroni/inky/examples ^C pi@raspberrypi:~/Pimoroni/inky/examples sudo pip3 install inkyphat
Requirement already satisfied: inkyphat in /usr/local/lib/python3.5/dist-packages
Requirement already satisfied: spidev in /usr/lib/python3/dist-packages (from inkyphat)
Requirement already satisfied: pillow in /usr/lib/python3/dist-packages (from inkyphat)
Requirement already satisfied: RPi.GPIO in /usr/lib/python3/dist-packages (from inkyphat)
Requirement already satisfied: numpy in /usr/lib/python3/dist-packages (from inkyphat)
pi@raspberrypi:~/Pimoroni/inky/examples cd phat pi@raspberrypi:~/Pimoroni/inky/examples/phat python calendar-phat.py --colour “red”
Inky pHAT: Calendar

Draws a calendar for the current month to your Inky pHAT.
This example uses a sprite sheet of numbers and month names which are
composited over the background in a couple of different ways.

Traceback (most recent call last):
File “calendar-phat.py”, line 193, in
inky_display.show()
File “/usr/local/lib/python2.7/dist-packages/inky/inky.py”, line 288, in show
self._update(buf_a, buf_b)
File “/usr/local/lib/python2.7/dist-packages/inky/inky.py”, line 209, in _update
self.setup()
File “/usr/local/lib/python2.7/dist-packages/inky/inky.py”, line 184, in setup
self._spi.open(0, self.cs_pin)
IOError: [Errno 2] No such file or directory

It looks like SPI has somehow not been enabled on your Pi.

On the command-line, run sudo raspi-config and go into (if I remember correctly) interaces and make sure SPI is enabled or alternatively add the line dtparam=spi=on to the file /boot/config.txt

I found out that I already installed PiTFT display cause my problem. Solved now