--- setup.py.orig	2017-02-02 09:37:32.000000000 +0100
+++ setup.py	2017-06-19 11:12:03.788380266 +0200
@@ -35,7 +35,7 @@
 def copyConfiguration():
     sys.stdout.write('\nSEN2COR ' + version + ' setup script:\n')
     sys.stdout.write('This will finish the configuration of the environment settings.\n')
-    user_input = raw_input('\nOK to continue? [y/n]: ')
+    user_input = 'y'
     if user_input == 'n':
         return False
 
@@ -46,7 +46,7 @@
     while True:
         sys.stdout.write('\nPlease input a path for the sen2cor home directory:\n')
         sys.stdout.write('default is: ' + SEN2COR_HOME + '\n')
-        user_input = raw_input('Is this OK? [y/n]: ')
+        user_input = 'y'
         if user_input == 'n':
             SEN2COR_HOME = raw_input('New path: ')
             sys.stdout.write('New path is: ' + SEN2COR_HOME + '\n')