Newbie Help...No such file or directory. Compilation terminated.

In file included from pushbuttonlinein.ino:3:0:
C:\Users\Administrator\Documents\Arduino\libraries\FastLED/FastLED.h:14:21: note: #pragma message: FastLED version 3.002.006

pragma message "FastLED version 3.002.006"

^

I do not think this is a problem as I see this in the library

#if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)
#define FASTLED_HAS_PRAGMA_MESSAGE
#endif

#define FASTLED_VERSION 3002006
#ifndef FASTLED_INTERNAL
#  ifdef FASTLED_HAS_PRAGMA_MESSAGE
#    pragma message "FastLED version 3.002.006"
#  else
#    warning FastLED version 3.002.006  (Not really a warning, just telling you here.)
#  endif
#endif

You can certainly try to run some of the Fast Led library examples to verify that all is OK.

pushbuttonlinein:1748: error: invalid conversion from 'void ()(boolean) {aka void ()(bool)}' to 'void ()()' [-fpermissive]
pushbuttonlinein:1748: error: invalid conversion from 'void (
)(uint8_t) {aka void ()(unsigned char)}' to 'void ()()' [-fpermissive]
invalid conversion from 'void ()(boolean) {aka void ()(bool)}' to 'void (*)()' [-fpermissive]

You will have to post the code at line 1748.