Errors related to TFT libraries

I'm trying to use the TFT-master library I downloaded from Github, however my sketch is choosing the default TFT library built in IDE.

Also, I downloaded this new TFT-master library because I got a Java error in the default TFT library about Adafruit_GFX.h not found.

I had a prior Java error about SD library not installed and so I went into the terminal and deleted the Adafruit_GFX.h file. I removed library too because I'm not using currently. Any help here?

Q1: How do I replace my TFT library with one from GitHub? Q2: How do I get rid of java error about Adafruit_GFX.h?

Arduino: 1.8.3 (Mac OS X), Board: "Arduino/Genuino Uno"

In file included from /Users/evanjohnson/Documents/Arduino/Happy_Birthday_TFT_Display/Happy_Birthday_TFT_Display.ino:15:0:
/Applications/Arduino.app/Contents/Java/libraries/TFT/src/TFT.h:36:34: fatal error: utility/Adafruit_GFX.h: No such file or directory
 #include "utility/Adafruit_GFX.h"
                                  ^
compilation terminated.
Multiple libraries were found for "TFT.h"
 Used: /Applications/Arduino.app/Contents/Java/libraries/TFT
 Not used: /Users/evanjohnson/Documents/Arduino/libraries/TFT-master
exit status 1
Error compiling for board Arduino/Genuino Uno.

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.

encryptor:
Q1: How do I replace my TFT library with one from GitHub?

Rename /Users/evanjohnson/Documents/Arduino/libraries/TFT-master to /Users/evanjohnson/Documents/Arduino/libraries/TFT. When there are multiple libraries that contain the filename you are including the Arduino IDE will give include priority to the library where the folder name matches the filename.

encryptor:
Q2: How do I get rid of java error about Adafruit_GFX.h?

It's not a Java error. You're compiling C++ code. The only Java involved is the Arduino IDE is written in Java. For one thing, you never should have deleted Adafruit_GFX.h, I don't know why you thought that was a good idea. However, as long as you haven't also deleted the file in the /Users/evanjohnson/Documents/Arduino/libraries/TFT library doing what I recommended above will solve the problem.