diff --git a/src/freedombone-utils-search b/src/freedombone-utils-search
index 8e56c1f55fa30775933c7230f7709a06e5abfb86..002b1e11ae733b1e27c36e23d588e94ea6fb81c7 100755
--- a/src/freedombone-utils-search
+++ b/src/freedombone-utils-search
@@ -673,39 +673,39 @@ function webadmin_install_search {
     fi
 
     cat >> "$rootdir/usr/bin/install_searx" <<EOF
-pip2 install --upgrade pip
+pip install --upgrade pip
 
-if ! pip2 install certifi; then
+if ! pip install certifi; then
     echo $'Failed to install certifi'
     exit 737692
 fi
 
-if ! pip2 install pyyaml; then
+if ! pip install pyyaml; then
     echo $'Failed to install pyyaml'
     exit 469242
 fi
 
-if ! pip2 install flask --upgrade; then
+if ! pip install flask --upgrade; then
     echo $'Failed to install flask'
     exit 888575
 fi
 
-if ! pip2 install flask_restless --upgrade; then
+if ! pip install flask_restless --upgrade; then
     echo $'Failed to install flask_restless'
     exit 54835
 fi
 
-if ! pip2 install flask_babel --upgrade; then
+if ! pip install flask_babel --upgrade; then
     echo $'Failed to install flask_babel'
     exit 63738
 fi
 
-if ! pip2 install requests --upgrade; then
+if ! pip install requests --upgrade; then
     echo $'Failed to install requests'
     exit 357282
 fi
 
-if ! pip2 install pygments --upgrade; then
+if ! pip install pygments --upgrade; then
     echo $'Failed to install pygments'
     exit 357282
 fi