Skip to content
Snippets Groups Projects
Commit 705612d5 authored by Bob Mottram's avatar Bob Mottram
Browse files

just pip

parent 77366792
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment