Skip to content

Commit 236e7ec

Browse files
committed
Updated wording on 'install_depthai.sh' script
1 parent f9f1b1f commit 236e7ec

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/source/_static/install_depthai.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ do
5353
if [[ "$python_version" == "" ]]; then
5454
echo "No python version found."
5555
echo "Input path for python binary, version 3.8 or higher, or leave empty and python 3.10 will be installed for you."
56-
echo "Press any key to continue"
56+
echo "Press ENTER key to continue"
5757
read -e python_binary_path < /dev/tty
5858
# python not found and user wants to install python 3.10
5959
if [ "$python_binary_path" = "" ]; then
@@ -66,16 +66,16 @@ do
6666
nr_2=$(echo "${python_version:9:2}" | tr -d -c 0-9)
6767
echo "Python version: $python_version found."
6868
if [ "$nr_1" -gt 2 ] && [ "$nr_2" -gt 7 ]; then # first two digits of python version greater then 3.7 -> python version 3.8 or greater is allowed.
69-
echo "If you want to use it for installation, press ANY key, otherwise input path to python binary."
70-
echo "Press any key to continue"
69+
echo "If you want to use it for installation, press ENTER key, otherwise input path to python binary."
70+
echo "Press ENTER key to continue"
7171
read -e python_binary_path < /dev/tty
7272
# user wants to use already installed python whose version is high enough
7373
if [ "$python_binary_path" = "" ]; then
7474
python_chosen="true"
7575
fi
7676
else
7777
echo "This python version is not supported by depthai. Enter path to python binary version et least 3.8, or leave empty and python 3.10 will be installed automatically."
78-
echo "Press any key to continue"
78+
echo "Press ENTER key to continue"
7979
read -e python_binary_path < /dev/tty
8080
# python version is too low and user wants to install python 3.10
8181
if [ "$python_binary_path" = "" ]; then
@@ -241,7 +241,7 @@ fi
241241

242242
echo -e '\n\n:::::::::::::::: INSTALATION COMPLETE ::::::::::::::::\n'
243243
echo -e '\nTo run demo app write <depthai_launcher> in terminal.'
244-
echo "Press ANY KEY to finish and run the demo app..."
244+
echo "Press ENTER KEY to finish and run the demo app..."
245245
read -n1 key < /dev/tty
246246
echo "STARTING DEMO APP."
247247
python "$DEPTHAI_DIR/launcher/launcher.py" -r "$DEPTHAI_DIR"

0 commit comments

Comments
 (0)