fast_install.sh 35.4 KB
Newer Older
1 2
#!/bin/bash

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
## purple to echo
function purple(){
    echo -e "\033[35m$1\033[0m"
}


## green to echo
function green(){
    echo -e "\033[32m$1\033[0m"
}

## Error to warning with blink
function bred(){
    echo -e "\033[31m\033[01m\033[05m$1\033[0m"
}

## Error to warning with blink
function byellow(){
    echo -e "\033[33m\033[01m\033[05m$1\033[0m"
}


## Error
function red(){
    echo -e "\033[31m\033[01m$1\033[0m"
}

## warning
function yellow(){
    echo -e "\033[33m\033[01m$1\033[0m"
}

35 36 37
path='http://paddlepaddle.org/download?url='
#release_version=`curl -s https://pypi.org/project/paddlepaddle/|grep -E "/project/paddlepaddle/"|grep "release"|awk -F '/' '{print $(NF-1)}'|head -1`
release_version=1.2.0
T
tianshuo78520a 已提交
38 39 40 41 42 43 44
python_list=(
"27"
"35"
"36"
"37"
)

45 46 47 48

function use_cpu(){
   while true
    do
49
     read -p "是否安装CPU版本的PaddlePaddle?(y/n)" cpu_option
50
     cpu_option=`echo $cpu_option | tr 'A-Z' 'a-z'`
T
tianshuo78520a 已提交
51
     if [[ "$cpu_option" == "" || "$cpu_option" == "n" ]];then
52
        echo "退出安装中..."
53 54 55
        exit
     else
        GPU='cpu'
56
        echo "将为您安装CPU版本的PaddlePaddle"
57 58 59 60 61
        break
     fi
    done
}

T
tianshuo78520a 已提交
62
function checkLinuxCUDNN(){
63 64 65
   echo
   read -n1 -p "请按回车键进行下一步..."
   echo
T
tianshuo78520a 已提交
66 67 68 69 70 71 72 73 74 75 76
   while true
   do
       version_file='/usr/local/cuda/include/cudnn.h'
       if [ -f "$version_file" ];then
          CUDNN=`cat $version_file | grep CUDNN_MAJOR |awk 'NR==1{print $NF}'`
       fi
       if [ "$CUDNN" == "" ];then
           version_file=`sudo find /usr -name "cudnn.h"|head -1`
           if [ "$version_file" != "" ];then
               CUDNN=`cat ${version_file} | grep CUDNN_MAJOR -A 2|awk 'NR==1{print $NF}'`
           else
77
               echo "检测结果:未在常规路径下找到cuda/include/cudnn.h文件"
T
tianshuo78520a 已提交
78 79
               while true
               do
80 81
                  read -p "请核实cudnn.h位置,并在此输入路径(请注意,路径需要输入到“cudnn.h”这一级):" cudnn_version
                  echo
T
tianshuo78520a 已提交
82
                  if [ "$cudnn_version" == "" ] || [ ! -f "$cudnn_version" ];then
83 84
                        read -p "仍未找到cuDNN,输入y将安装CPU版本的PaddlePaddle,输入n可重新录入cuDNN路径,请输入(y/n)" cpu_option
                        echo
T
tianshuo78520a 已提交
85 86 87 88 89
                        cpu_option=`echo $cpu_option | tr 'A-Z' 'a-z'`
                        if [ "$cpu_option" == "y" -o "$cpu_option" == "" ];then
                            GPU='cpu'
                            break
                        else
90 91
                            echo "请重新输入"
                            echo
T
tianshuo78520a 已提交
92 93 94
                        fi
                  else
                     CUDNN=`cat $cudnn_version | grep CUDNN_MAJOR |awk 'NR==1{print $NF}'`
95
                     echo "检测结果:找到cudnn.h"
T
tianshuo78520a 已提交
96 97 98 99 100 101 102 103 104
                     break
                  fi
                 done
             if [ "$GPU" == "cpu" ];then
                break
             fi
           fi
       fi
       if [ "$CUDA" == "9" -a "$CUDNN" != "7" ];then
105 106 107
           echo
           echo "目前CUDA9下仅支持cuDNN7,暂不支持您机器上的CUDNN${CUDNN}。您可以访问NVIDIA官网下载适合版本的CUDNN,请ctrl+c退出安装进程。按回车键将为您安装CPU版本的PaddlePaddle"
           echo
T
tianshuo78520a 已提交
108 109 110 111 112 113 114
          use_cpu()
          if [ "$GPU"=="cpu" ];then
             break
          fi
       fi

       if [ "$CUDNN" == 5 ] || [ "$CUDNN" == 7 ];then
115 116
          echo
          echo "您的CUDNN版本是: CUDNN$CUDNN"
T
tianshuo78520a 已提交
117 118
          break
       else
119 120 121
          echo
          read -n1 -p "目前支持的CUDNN版本为5和7,暂不支持您机器上的CUDNN${CUDNN},将为您安装CPU版本的PaddlePaddle,请按回车键开始安装"
          echo
T
tianshuo78520a 已提交
122 123 124 125 126 127 128 129
          use_cpu
          if [ "$GPU"=="cpu" ];then
             break
          fi
       fi
   done
}

T
tianshuo78520a 已提交
130
function checkLinuxCUDA(){
T
tianshuo78520a 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
   while true
   do
       CUDA=`echo ${CUDA_VERSION}|awk -F "[ .]" '{print $1}'`
       if [ "$CUDA" == "" ];then
         if [ -f "/usr/local/cuda/version.txt" ];then
           CUDA=`cat /usr/local/cuda/version.txt | grep 'CUDA Version'|awk -F '[ .]' '{print $3}'`
           tmp_cuda=$CUDA
         fi
         if [ -f "/usr/local/cuda8/version.txt" ];then
           CUDA=`cat /usr/local/cuda8/version.txt | grep 'CUDA Version'|awk -F '[ .]' '{print $3}'`
           tmp_cuda8=$CUDA
         fi
         if [ -f "/usr/local/cuda9/version.txt" ];then
           CUDA=`cat /usr/local/cuda9/version.txt | grep 'CUDA Version'|awk -F '[ .]' '{print $3}'`
           tmp_cuda9=$CUDA
         fi
       fi

       if [ "$tmp_cuda" != "" ];then
150
         echo "检测结果:找到CUDA $tmp_cuda"
T
tianshuo78520a 已提交
151 152
       fi
       if [ "$tmp_cudai8" != "" ];then
153
         echo "检测结果:找到CUDA $tmp_cuda8"
T
tianshuo78520a 已提交
154 155
       fi
       if [ "$tmp_cuda9" != "" ];then
156
         echo "检测结果:找到CUDA $tmp_cuda9"
T
tianshuo78520a 已提交
157 158 159
       fi

       if [ "$CUDA" == "" ];then
160
            echo "检测结果:没有在常规路径下找到cuda/version.txt文件"
T
tianshuo78520a 已提交
161 162
            while true
            do
163
                read -p "请输入cuda/version.txt的路径:" cuda_version
T
tianshuo78520a 已提交
164
                if [ "$cuda_version" == "" || ! -f "$cuda_version" ];then
165
                    read -p "仍未找到CUDA,输入y将安装CPU版本的PaddlePaddle,输入n可重新录入CUDA路径,请输入(y/n)" cpu_option
T
tianshuo78520a 已提交
166 167 168 169 170 171 172 173 174 175
                    cpu_option=`echo $cpu_option | tr 'A-Z' 'a-z'`
                    if [ "$cpu_option" == "y" || "$cpu_option" == "" ];then
                        GPU='cpu'
                        break
                    else
                        echo "重新输入..."
                    fi
                else
                    CUDA=`cat $cuda_version | grep 'CUDA Version'|awk -F '[ .]' '{print $3}'`
                    if [ "$CUDA" == "" ];then
176
                        echo "未能在version.txt中找到CUDA相关信息"
T
tianshuo78520a 已提交
177 178 179 180 181 182 183 184 185 186 187 188 189 190
                    else
                        break
                    fi
                fi
            done
            if [ "$GPU" == "cpu" ];then
                break
            fi
       fi

       if [ "$CUDA" == "8" ] || [ "$CUDA" == "9" ];then
          echo "您的CUDA版本是${CUDA}"
          break
       else
191 192
          echo "目前支持CUDA8/9,暂不支持您的CUDA${CUDA},将为您安装CPU版本的PaddlePaddle"
          echo
T
tianshuo78520a 已提交
193 194 195 196 197 198 199 200 201
          use_cpu
       fi

       if [ "$GPU" == "cpu" ];then
          break
       fi
   done
}

T
tianshuo78520a 已提交
202
function checkLinuxMathLibrary(){
T
tianshuo78520a 已提交
203 204 205
  while true
    do
      if [ "$AVX" ==  "" ];then
206 207 208
        echo "正在检测您环境中是否存在AVX指令集..."
        echo
        echo "检测结果:您电脑上没有AVX指令集,目前针对无AVX指令集的环境,我们仅提供支持mkl数学库的PaddlePaddle,将为您安装此版本的PaddlePaddle"
T
tianshuo78520a 已提交
209 210 211 212
        math='mkl'
        break
      elif [ "$GPU" == "gpu" ];then
        math='mkl'
213
        echo "检测到您的机器上配备GPU,推荐您使用mkl数学库"
T
tianshuo78520a 已提交
214 215
        break
      else
216 217 218 219
        read -p "请输入您希望使用的数学库:
            1:openblas 一个高性能多核 BLAS 库
            2:mkl(推荐) 英特尔数学核心函数库
            => 请输入数字1或2。如输入其他字符或直接回车,将会默认选择【 2. mkl 】 。请在这里输入并回车:" math
T
tianshuo78520a 已提交
220 221
          if [ "$math" == "" ];then
            math="mkl"
222
            echo "您选择了数字【2】"
T
tianshuo78520a 已提交
223 224 225 226
            break
          fi
          if [ "$math" == "1" ];then
            math=openblas
227
            echo "您选择了数字【1】"
T
tianshuo78520a 已提交
228 229 230
            break
          elif [ "$math" == "2" ];then
            math=mkl
231
            echo "您选择了数字【2】"
T
tianshuo78520a 已提交
232 233 234 235 236 237 238
            break
          fi
          echo "输入错误,请再次输入"
      fi
    done
}

T
tianshuo78520a 已提交
239
function checkLinuxPaddleVersion(){
240
  read -n1 -p "请按回车键继续..."
T
tianshuo78520a 已提交
241 242
  while true
    do
243 244 245 246
      read -p "
               1. 开发版:对应Github上develop分支,如您需要开发、或希望使用PaddlePaddle最新功能,请选用此版本
               2. 稳定版(推荐):如您无特殊开发需求,建议使用此版本,目前最新的版本号为 ${release_version}
                => 请输入数字1或2。如输入其他字符或直接回车,将会默认选择【 2. 稳定版 】 。请在这里输入并回车:" paddle_version
T
tianshuo78520a 已提交
247 248
        if [ "$paddle_version" == "" ];then
          paddle_version="release-${release_version}"
249
          echo "您选择了数字【2】,为您安装release-${release_version}"
T
tianshuo78520a 已提交
250 251 252
          break
        fi
        if [ "$paddle_version" == "1" ];then
253
          echo "您选择了数字【1】,将为您安装开发版"
T
tianshuo78520a 已提交
254 255
          break
        elif [ "$paddle_version" == "2" ];then
256
          echo "您选择了数字【2】,为您安装release-${release_version}"
T
tianshuo78520a 已提交
257 258 259 260 261 262
          break
        fi
        echo "输入错误,请再次输入"
    done
}

263
function checkPythonVirtualenv(){
T
tianshuo78520a 已提交
264 265
  while true
    do
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
      read -p "
                是否使用python  virtualenv虚环境安装(y/n)": check_virtualenv
    case $check_virtualenv in
      y)
        echo "为您使用python虚环境安装"
        ;;
      n)
        break
        ;;
      *)
        continue
        ;;
    esac

    virtualenv_path=`which virtualenv 2>&1`
    if [ "$virtualenv_path" == "" ];then
      $python_path -m pip install virtualenv
      if [ "$?" != '0' ];then
        echo "安装虚拟环境失败,请检查本地环境"
      fi
    fi

    while true
      do
        read -p "请输入虚拟环境名字:" virtualenv_name
        if [ "$virtualenv_name" == "" ];then
          echo "不能为空"
          continue
        fi
        break
    done

    virtualenv -p $python_path ${virtualenv_name}
    if [ "$?" != 0 ];then
      echo "创建虚环境失败,请检查环境"
      exit 2
    fi
    cd ${virtualenv_name}
    source ./bin/activate

    if [ "$?" == 0 ];then
      use_virtualenv=
      python_path=`which python`
      break
    else
      echo "创建虚环境失败,请检查环境"
      exit 2
    fi
  done
}

function checkLinuxPython(){
  python_path=`which python 2>/dev/null`
  while true
    do
  if [ "$python_path" == '' ];then
    while true
      do
        read -p "没有找到默认的python版本,请输入要安装的python路径:"  python_path
        python_path=`$python_path -V`
        if [ "$python_path" != "" ];then
          break
        else
          echo "输入路径有误,未找到pyrhon"
        fi
T
tianshuo78520a 已提交
331
    done
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
  fi

  python_version=`$python_path -V 2>&1|awk -F '[ .]' '{print $2$3}'`
  pip_version=`$python_path -m pip -V|awk -F '[ .]' '{print $2}'`
  while true
    do
      read -p "
                找到python版本$python_version,使用请输入y,选择其他版本请输n(y/n):"  check_python
      case $check_python in
        n)
          read -p "请指定您的python路径:" new_python_path
          python_V=`$new_python_path -V 2>/dev/null`
          if [ "$python_V" != "" ];then
            python_path=$new_python_path
            python_version=`$python_path -V 2>&1|awk -F '[ .]' '{print $2$3}'`
            pip_version=`python -m pip -V|awk -F '[ .]' '{print $2}'`
            echo "您的python版本为${python_version}"
            break
          else
            echo 输入有误,未找到python路径
          fi
          ;;
        y)
          break
          ;;
        *)
          echo "输入有误,请重新输入."
          continue
          ;;
      esac
  done

  if [ "$pip_version" -lt 9 ];then
    echo "您的pip版本小于9.0.1  请升级pip (pip install --upgrade pip)"
    exit 0
  fi

  if [ "$python_version" == "27" ];then
     uncode=`python -c "import pip._internal;print(pip._internal.pep425tags.get_supported())"|grep "cp27mu"`
     if [[ "$uncode" == "" ]];then
        uncode=
     else
        uncode=u
     fi
  fi

  version_list=`echo "${python_list[@]}" | grep "$python_version" `
  if [ "$version_list" == "" ];then
    echo "找不到可用的 pip, 我们只支持Python27/35/36/37及其对应的pip, 请重新输入, 或使用ctrl + c退出 "
  else
    break
  fi
  done
T
tianshuo78520a 已提交
385 386
}

T
tianshuo78520a 已提交
387
function checkLinuxAVX(){
T
tianshuo78520a 已提交
388 389 390
  while true
  do
    if [[ "$AVX" != "" ]];then
T
tianshuo78520a 已提交
391
      AVX="avx"
T
tianshuo78520a 已提交
392 393 394
      break
    else
      if [ "$CUDA" == "8" -a "$CUDNN" == "7" ] || [ "$GPU" == "cpu" ];then
T
tianshuo78520a 已提交
395
        AVX="noavx"
T
tianshuo78520a 已提交
396 397
        break
      else
398 399 400
        echo "Step 6. 检测是否有avx"
        echo
        echo "检测结果:未能找到avx,我们仅提供CPU版本或配置为CUDA8 cuDNN7的GPU版本的安装包"
T
tianshuo78520a 已提交
401 402 403 404 405 406
        break
      fi
    fi
  done
}

T
tianshuo78520a 已提交
407
function PipLinuxInstall(){
T
tianshuo78520a 已提交
408 409
  wheel_cpu_release="http://paddle-wheel.bj.bcebos.com/${release_version}-${GPU}-${AVX}-${math}/paddlepaddle-${release_version}-cp${python_version}-cp${python_version}m${uncode}-linux_x86_64.whl"
  wheel_gpu_release="http://paddle-wheel.bj.bcebos.com/${release_version}-gpu-cuda${CUDA}-cudnn${CUDNN}-${AVX}-${math}/paddlepaddle_gpu-${release_version}.post${CUDA}${CUDNN}-cp${python_version}-cp${python_version}m${uncode}-linux_x86_64.whl"
T
tianshuo78520a 已提交
410
  wheel_gpu_release_noavx="http://paddle-wheel.bj.bcebos.com/${release_version}-gpu-cuda${CUDA}-cudnn${CUDNN}-${AVX}-${math}/paddlepaddle_gpu-${release_version}-cp${python_version}-cp${python_version}m${uncode}-linux_x86_64.whl"
T
tianshuo78520a 已提交
411 412 413 414 415 416
  wheel_cpu_develop="http://paddle-wheel.bj.bcebos.com/latest-cpu-${AVX}-${math}/paddlepaddle-latest-cp${python_version}-cp${python_version}m${uncode}-linux_x86_64.whl"
  wheel_gpu_develop="http://paddle-wheel.bj.bcebos.com/latest-gpu-cuda${CUDA}-cudnn${CUDNN}-${AVX}-${math}/paddlepaddle_gpu-latest-cp${python_version}-cp${python_version}m${uncode}-linux_x86_64.whl"

  if [[ "$paddle_version" == "2" ]];then
    if [[ "$GPU" == "gpu" ]];then
        if [[ ${AVX} == "avx" ]];then
T
tianshuo78520a 已提交
417
          rm -rf `echo $wheel_gpu_release|awk -F '/' '{print $NF}'`
T
tianshuo78520a 已提交
418
          wget -q $wheel_gpu_release
419
          if [ "$?" == "0" ];then
420 421 422 423 424 425 426
            $python_path -m pip install ${use_virtualenv} -i https://mirrors.aliyun.com/pypi/simple --trusted-host=mirrors.aliyun.com $wheel_gpu_release
            if [ "$?" == 0 ];then
              echo 安装成功
            else
              echo 安装失败
              exit 1
            fi
T
tianshuo78520a 已提交
427
          else
428
            echo paddlepaddle whl包下载失败
T
tianshuo78520a 已提交
429 430
            exit 1
          fi
T
tianshuo78520a 已提交
431
        else
T
tianshuo78520a 已提交
432
          rm -rf `echo $wheel_gpu_release_novax|awk -F '/' '{print $NF}'`
T
tianshuo78520a 已提交
433
          wget -q $wheel_gpu_release_novax
434
          if [ "$?" == "0" ];then
435 436 437 438 439 440 441
            $python_path -m pip install ${use_virtualenv} -i https://mirrors.aliyun.com/pypi/simple --trusted-host=mirrors.aliyun.com $wheel_gpu_release_noavx
            if [ "$?" == 0 ];then
              echo 安装成功
            else
              echo 安装失败
              exit 1
            fi
T
tianshuo78520a 已提交
442
          else
443
            echo paddlepaddle whl包下载失败
T
tianshuo78520a 已提交
444 445
            exit 1
          fi
T
tianshuo78520a 已提交
446 447
        fi
    else
T
tianshuo78520a 已提交
448
        rm -rf `echo $wheel_cpu_release|awk -F '/' '{print $NF}'`
T
tianshuo78520a 已提交
449
        wget -q $wheel_cpu_release
450
        if [ "$?" == "0" ];then
451 452 453 454 455 456 457
          $python_path -m pip install ${use_virtualenv} -i https://mirrors.aliyun.com/pypi/simple --trusted-host=mirrors.aliyun.com $wheel_cpu_release
          if [ "$?" == 0 ];then
              echo 安装成功
            else
              echo 安装失败
              exit 1
            fi
T
tianshuo78520a 已提交
458
        else
459
          echo paddlepaddle whl包下载失败
T
tianshuo78520a 已提交
460 461
          exit 1
        fi
T
tianshuo78520a 已提交
462 463 464 465
    fi
  else
    if [[ "$GPU" == "gpu" ]];then
        rm -rf `echo $wheel_gpu_develop|awk -F '/' '{print $NF}'`
T
tianshuo78520a 已提交
466
        wget -q $wheel_gpu_develop
467
        if [ "$?" == "0" ];then
468 469 470 471 472 473 474
          $python_path -m pip install ${use_virtualenv} -i https://mirrors.aliyun.com/pypi/simple --trusted-host=mirrors.aliyun.com $wheel_gpu_develop
          if [ "$?" == 0 ];then
              echo 安装成功
            else
              echo 安装失败
              exit 1
            fi
T
tianshuo78520a 已提交
475
        else
476
          echo paddlepaddle whl包下载失败
T
tianshuo78520a 已提交
477 478
          exit 1
        fi
T
tianshuo78520a 已提交
479 480
    else
        rm -rf `echo $wheel_cpu_develop|awk -F '/' '{print $NF}'`
T
tianshuo78520a 已提交
481
        wget -q $wheel_cpu_develop
482
        if [ "$?" == "0" ];then
483 484 485 486 487 488 489
          $python_path -m pip install ${use_virtualenv} -i https://mirrors.aliyun.com/pypi/simple --trusted-host=mirrors.aliyun.com $wheel_cpu_develop
          if [ "$?" == 0 ];then
              echo 安装成功
            else
              echo 安装失败
              exit 1
            fi
T
tianshuo78520a 已提交
490
        else
491
          echo paddlepaddle whl包下载失败
T
tianshuo78520a 已提交
492 493
          exit 1
        fi
T
tianshuo78520a 已提交
494 495 496 497 498
    fi
  fi
}


T
tianshuo78520a 已提交
499
function checkLinuxGPU(){
500 501
  read -n1 -p "即将检测您的机器是否含GPU,请按回车键继续..."
  echo
T
tianshuo78520a 已提交
502
  AVX=`cat /proc/cpuinfo |grep avx|tail -1|grep avx`
T
tianshuo78520a 已提交
503 504
  which nvidia-smi >/dev/null 2>&1
  if [ "$?" != "0" ];then
T
tianshuo78520a 已提交
505
    GPU='cpu'
506
    echo "未在机器上找到GPU,或PaddlePaddle暂不支持此型号的GPU"
T
tianshuo78520a 已提交
507 508
  else
    GPU='gpu'
509 510
    echo "已在您的机器上找到GPU,即将确认CUDA和CUDNN版本..."
    echo
T
tianshuo78520a 已提交
511 512
  fi
  if [ "$GPU" == 'gpu' ];then
T
tianshuo78520a 已提交
513 514
    checkLinuxCUDA
    checkLinuxCUDNN
T
tianshuo78520a 已提交
515 516 517
  fi
}

518
function linux(){
T
tianshuo78520a 已提交
519 520
gpu_list=(
"GeForce 410M"
521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
"GeForce 610M"
"GeForce 705M"
"GeForce 710M"
"GeForce 800M"
"GeForce 820M"
"GeForce 830M"
"GeForce 840M"
"GeForce 910M"
"GeForce 920M"
"GeForce 930M"
"GeForce 940M"
"GeForce GT 415M"
"GeForce GT 420M"
"GeForce GT 430"
"GeForce GT 435M"
"GeForce GT 440"
"GeForce GT 445M"
"GeForce GT 520"
"GeForce GT 520M"
"GeForce GT 520MX"
"GeForce GT 525M"
"GeForce GT 540M"
"GeForce GT 550M"
"GeForce GT 555M"
"GeForce GT 610"
"GeForce GT 620"
"GeForce GT 620M"
"GeForce GT 625M"
"GeForce GT 630"
"GeForce GT 630M"
"GeForce GT 635M"
"GeForce GT 640"
"GeForce GT 640 (GDDR5)"
"GeForce GT 640M"
"GeForce GT 640M LE"
"GeForce GT 645M"
"GeForce GT 650M"
"GeForce GT 705"
"GeForce GT 720"
"GeForce GT 720M"
"GeForce GT 730"
"GeForce GT 730M"
"GeForce GT 735M"
"GeForce GT 740"
"GeForce GT 740M"
"GeForce GT 745M"
"GeForce GT 750M"
"GeForce GTS 450"
"GeForce GTX 1050"
"GeForce GTX 1060"
"GeForce GTX 1070"
"GeForce GTX 1080"
"GeForce GTX 1080 Ti"
"GeForce GTX 460"
"GeForce GTX 460M"
"GeForce GTX 465"
"GeForce GTX 470"
"GeForce GTX 470M"
"GeForce GTX 480"
"GeForce GTX 480M"
"GeForce GTX 485M"
"GeForce GTX 550 Ti"
"GeForce GTX 560M"
"GeForce GTX 560 Ti"
"GeForce GTX 570"
"GeForce GTX 570M"
"GeForce GTX 580"
"GeForce GTX 580M"
"GeForce GTX 590"
"GeForce GTX 650"
"GeForce GTX 650 Ti"
"GeForce GTX 650 Ti BOOST"
"GeForce GTX 660"
"GeForce GTX 660M"
"GeForce GTX 660 Ti"
"GeForce GTX 670"
"GeForce GTX 670M"
"GeForce GTX 670MX"
"GeForce GTX 675M"
"GeForce GTX 675MX"
"GeForce GTX 680"
"GeForce GTX 680M"
"GeForce GTX 680MX"
"GeForce GTX 690"
"GeForce GTX 750"
"GeForce GTX 750 Ti"
"GeForce GTX 760"
"GeForce GTX 760M"
"GeForce GTX 765M"
"GeForce GTX 770"
"GeForce GTX 770M"
"GeForce GTX 780"
"GeForce GTX 780M"
"GeForce GTX 780 Ti"
"GeForce GTX 850M"
"GeForce GTX 860M"
"GeForce GTX 870M"
"GeForce GTX 880M"
"GeForce GTX 950"
"GeForce GTX 950M"
"GeForce GTX 960"
"GeForce GTX 960M"
"GeForce GTX 965M"
"GeForce GTX 970"
"GeForce GTX 970M"
"GeForce GTX 980"
"GeForce GTX 980M"
"GeForce GTX 980 Ti"
"GeForce GTX TITAN"
"GeForce GTX TITAN Black"
"GeForce GTX TITAN X"
"GeForce GTX TITAN Z"
"Jetson TK1"
"Jetson TX1"
"Jetson TX2"
"Mobile Products"
"NVIDIA NVS 310"
"NVIDIA NVS 315"
"NVIDIA NVS 510"
"NVIDIA NVS 810"
"NVIDIA TITAN V"
"NVIDIA TITAN X"
"NVIDIA TITAN Xp"
"NVS 4200M"
"NVS 5200M"
"NVS 5400M"
"Quadro 410"
"Quadro GP100"
"Quadro K1100M"
"Quadro K1200"
"Quadro K2000"
"Quadro K2000D"
"Quadro K2100M"
"Quadro K2200"
"Quadro K2200M"
"Quadro K3100M"
"Quadro K4000"
"Quadro K4100M"
"Quadro K420"
"Quadro K4200"
"Quadro K4200M"
"Quadro K5000"
"Quadro K500M"
"Quadro K5100M"
"Quadro K510M"
"Quadro K5200"
"Quadro K5200M"
"Quadro K600"
"Quadro K6000"
"Quadro K6000M"
"Quadro K610M"
"Quadro K620"
"Quadro K620M"
"Quadro M1000M"
"Quadro M1200"
"Quadro M2000"
"Quadro M2000M"
"Quadro M2200"
"Quadro M3000M"
"Quadro M4000"
"Quadro M4000M"
"Quadro M5000"
"Quadro M5000M"
"Quadro M500M"
"Quadro M520"
"Quadro M5500M"
"Quadro M6000"
"Quadro M6000 24GB"
"Quadro M600M"
"Quadro M620"
"Quadro Mobile Products"
"Quadro P1000"
"Quadro P2000"
"Quadro P3000"
"Quadro P400"
"Quadro P4000"
"Quadro P5000"
"Quadro P600"
"Quadro P6000"
"Quadro Plex 7000"
"Tegra K1"
"Tegra X1"
"Tesla C2050/C2070"
"Tesla C2075"
"Tesla Data Center Products"
"Tesla K10"
"Tesla K20"
"Tesla K40"
"Tesla K80"
"Tesla M40"
"Tesla M60"
"Tesla P100"
"Tesla P4"
"Tesla P40"
"Tesla V100")
716 717 718

  echo "Step 2. 检测GPU型号和CUDA/cuDNN版本"
  echo
T
tianshuo78520a 已提交
719
  checkLinuxGPU
720 721 722
  echo
  echo "Step 3. 检测数学库"
  echo
T
tianshuo78520a 已提交
723
  checkLinuxMathLibrary
724 725 726
  echo
  echo "Step 4. 选择要安装的PaddlePaddle版本"
  echo
T
tianshuo78520a 已提交
727
  checkLinuxPaddleVersion
728 729 730
  echo
  echo "Step 5. 检测pip版本"
  echo
731
  checkLinuxPython
732
  echo
T
tianshuo78520a 已提交
733
  checkLinuxAVX
734 735 736 737
  echo
  echo "Step 6.是否使用Python的虚拟环境"
  use_virtualenv="--user"
  checkPythonVirtualenv
738
  echo "*********************2. 开始安装*****************************"
T
tianshuo78520a 已提交
739
  PipLinuxInstall
740 741 742 743 744 745 746 747 748 749
  if [ "$check_virtualenv" == 'y' ];then
    echo "虚环境创建成功,请cd 进入${virtualenv_name}, 执行 source bin/activate 进入虚环境。退出虚环境执行 deactivate命令。
  更多虚环境使用方法请参考virtualenv官网:https://virtualenv.pypa.io/en/latest/"
  fi
}

function clearMacPythonEnv(){
   python_version=""
   python_brief_version=""
   python_root=""
750
}
T
tianshuo78520a 已提交
751

752 753 754 755
function checkMacPython2(){
    while true
       do
          python_version=`$python_root --version 2>&1 1>&1`
756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785
          if [[ $? == "0" ]];then
               if [ "$python_version" == "" ] || [ "$python_root" == "/usr/bin/python" -a "$python_version" == "Python 2.7.10" ];then
                    clearMacPythonEnv
               else
                    check_python=`echo $python_version | grep "Python 2"`
                    if [[ -n "$check_python" ]];then
                       while true
                         do
                           echo -e "          => 在您的环境中找到 \033[32m[ $python_version ]\033[0m, 确认使用此版本请输入y;如您希望自定义Python路径请输入n。请在这里输入(y/n)并回车: "
                           read -p "" use_python
                           echo
                           use_python=`echo $use_python | tr 'A-Z' 'a-z'`
                           if [[ "$use_python" == "y" ]]||[[ "$use_python" == "" ]];then
                                use_python="y"
                                break
                           elif [[ "$use_python" == "n" ]];then
                                clearMacPythonEnv
                                break
                           else
                               red "            输入错误,请重新输入(y/n)"
                           fi
                       done
                       if [[ "$use_python" == "y" ]];then
                         return 0
                       fi
                    else
                       red "          您输入Python的不是Python2"
                       clearMacPythonEnv
                    fi
               fi
786
          else
787 788 789 790 791 792 793 794 795 796
               clearMacPythonEnv
               red "          => 未能在常规路径下找到可用的Python2,请使用ctrl+c命令退出安装程序,并使用brew或pypi.org下载安装Python2(注意Python版本不能低于2.7.15)"
               read -p "          如希望自定义Python路径,请输入路径
          如果希望重新选择Python版本,请回车:" python_root
               echo
               if [[ "$python_root" == "" ]];then
                     python_V=""
                     clearMacPythonEnv
                     return 1
               fi
797 798 799 800 801 802 803
          fi
       done
}

function checkMacPython3(){
    while true
       do
804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834
          python_version=`$python_root --version 2>&1 1>&1`
          if [[ $? == "0" ]];then
               if [ "$python_version" == "" ] || [ "$python_root" == "/usr/bin/python" -a "$python_version" == "Python 2.7.10" ]  ;then
                    clearMacPythonEnv
               else
                    check_python=`echo $python_version | grep "Python 3"`
                    if [[ -n "$check_python" ]];then
                       while true
                         do
                           echo -e "          => 在您的环境中找到 \033[32m[ $python_version ]\033[0m, 确认使用此版本请输入y;如您希望自定义Python路径请输入n。请在这里输入(y/n)并回车: "
                           read -p "" use_python
                           echo
                           use_python=`echo $use_python | tr 'A-Z' 'a-z'`
                           if [[ "$use_python" == "y" ]]||[[ "$use_python" == "" ]];then
                                use_python="y"
                                break
                           elif [[ "$use_python" == "n" ]];then
                                clearMacPythonEnv
                                break
                           else
                               red "            输入错误,请重新输入(y/n)"
                           fi
                       done
                       if [[ "$use_python" == "y" ]];then
                         return 0
                       fi
                    else
                       red "          您输入Python的不是Python3"
                       clearMacPythonEnv
                    fi
               fi
835
          else
836 837 838 839 840 841 842 843 844 845
               clearMacPythonEnv
               red "          => 未能在常规路径下找到可用的Python3,请使用ctrl+c命令退出安装程序,并使用brew或pypi.org下载安装Python3(注意Python版本不能低于3.5.x)"
               read -p "          如希望自定义Python路径,请输入路径
          如果希望重新选择Python版本,请回车:" python_root
               echo
               if [[ "$python_root" == "" ]];then
                     python_V=""
                     clearMacPythonEnv
                     return 1
               fi
846 847 848 849
          fi
       done
}

J
JiabinYang 已提交
850
function checkMacPaddleVersion(){
851
  while true
J
JiabinYang 已提交
852
    do
853 854
      read -n1 -p "Step 2. 选择PaddlePaddle的版本,请按回车键继续..."
      echo
855 856 857 858
      yellow "          1. 开发版:对应Github上develop分支,如您需要开发、或希望使用PaddlePaddle最新功能,请选用此版本"
      yellow "          2. 稳定版(推荐):如您无特殊开发需求,建议使用此版本,目前最新的版本号为 ${release_version}"
      read -p "          => 请输入数字1或2。如输入其他字符或直接回车,将会默认选择【 2. 稳定版 】 。请在这里输入并回车:" paddle_version
      if [[ "$paddle_version" == "1" ]]||[[ "$paddle_version" == "2" ]];then
859
          echo
860
          yellow "          您选择了数字【"$paddle_version" 】"
861
          echo
J
JiabinYang 已提交
862 863 864
          break
      else
          paddle_version="2"
865
          echo
866
          yellow "          您选择了数字【2】"
867
          echo
J
JiabinYang 已提交
868 869 870 871
          break
      fi
    done
}
872 873 874 875 876 877 878 879 880 881 882 883 884 885 886
function initCheckMacPython2(){
   echo
   yellow "          您选择了Python "$python_V",正在寻找符合要求的Python 2版本"
   echo
   python_root=`which python2.7`
   if [[ "$python_root" == "" ]];then
        python_root=`which python`
   fi
   checkMacPython2
   if [[ "$?" == "1" ]];then
        return 1
   else
        return 0
   fi
}
887

888 889 890 891 892 893 894 895 896 897 898 899
function initCheckMacPython3(){
   echo
   yellow "          您选择了Python "$python_V",正在寻找符合您要求的Python 2版本"
   echo
   python_root=`which python3`
   checkMacPython3
   if [[ "$?" == "1" ]];then
        return 1
   else
        return 0
   fi
}
900

901 902 903 904 905 906 907 908
function checkMacPip(){
   if [[ "$python_V" == "2" ]]||[[ "$python_V" == "3" ]];then

       python_brief_version=`$python_root -m pip -V |awk -F "[ |)]" '{print $6}'|sed 's#\.##g'`
       if [[ ${python_brief_version} == "" ]];then
            red "您输入的python:${python_root} 对应的pip不可用,请检查此pip或重新选择其他python"
            echo
            return 1
J
JiabinYang 已提交
909
       fi
910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927
       pip_version=`$python_root -m pip -V |awk -F '[ .]' '{print $2}'`
       if [[ 9 -le ${pip_version} ]];then
            :
       else
            red "您的pip版本过低,请安装pip 9.0.1及以上的版本"
            echo
            return 1
       fi
       if [[ "$python_brief_version" == "" ]];then
            clearMacPythonEnv
            red "您的 $python_root 对应的pip存在问题,请按ctrl + c退出后重新安装pip,或切换其他python版本"
            echo
            return 1
       else
            if [[ $python_brief_version == "27" ]];then
               uncode=`python -c "import pip._internal;print(pip._internal.pep425tags.get_supported())"|grep "cp27"`
               if [[ $uncode == "" ]];then
                  uncode="mu"
928
               else
929
                  uncode="m"
930
               fi
931 932 933 934 935 936
            fi
            version_list=`echo "${python_list[@]}" | grep "$python_brief_version" `
            if [[ "$version_list" != "" ]];then
               return 0
             else
               red "未找到可用的pip或pip3。PaddlePaddle目前支持:Python2.7/3.5/3.6/3.7及其对应的pip, 请重新输入,或使用ctrl + c退出"
937
               echo
938 939 940
               clearMacPythonEnv
               return 1
            fi
J
JiabinYang 已提交
941

942 943 944
       fi
   fi
}
945

946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965
function checkMacPythonVersion(){
  while true
    do
       read -n1 -p "Step 3. 选择Python版本,请按回车键继续..."
       echo
       yellow "          2. 使用python 2.x"
       yellow "          3. 使用python 3.x"
       read -p "          => 请输入数字2或3。如输入其他字符或直接回车,将会默认使用【Python 2 】。请在这里输入并回车:" python_V
       if [[ "$python_V" == "" ]];then
            python_V="2"
       fi
       if [[ "$python_V" == "2" ]];then
            initCheckMacPython2
            if [[ "$?" == "0" ]];then
                checkMacPip
                if [[ "$?" == "0" ]];then
                    return 0
                else
                    :
                fi
T
tianshuo78520a 已提交
966
            else
967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983
                :
            fi
       elif [[ "$python_V" == "3" ]];then
            initCheckMacPython3
            if [[ "$?" == "0" ]];then
                checkMacPip
                if [[ "$?" == "0" ]];then
                    return 0
                else
                    :
                fi
            else
                :
            fi
       else
            red "输入错误,请重新输入"
       fi
J
JiabinYang 已提交
984 985
  done
}
986

J
JiabinYang 已提交
987
function checkMacAVX(){
988
    read -n1 -p "Step 4. 检测您的Mac是否支持AVX指令集,请按回车键继续..."
J
JiabinYang 已提交
989
    if [[ $AVX != "" ]];then
T
tianshuo78520a 已提交
990
        AVX="avx"
991 992 993 994
        echo ""
        green "          检测结果:支持"
        echo ""
        return 0
J
JiabinYang 已提交
995
    else
996 997 998
        red "            检测结果:不支持。非常抱歉,PaddlePaddle在Mac系统暂不提供no_avx类型的安装包,您可以选择在Linux系统中安装no_avx版的PaddlePaddle, 请按回车键退出..."
        echo
        return 1
J
JiabinYang 已提交
999 1000
    fi
}
1001

J
JiabinYang 已提交
1002
function checkMacGPU(){
1003 1004
    read -n1 -p "Step 5. 选择CPU/GPU版本,请按回车键继续..."
    echo
J
JiabinYang 已提交
1005
    if [[ $GPU != "" ]];then
1006
        yellow "          MacOS环境下,暂未提供GPU版本的PaddlePaddle安装包,将为您安装CPU版本的PaddlePaddle"
J
JiabinYang 已提交
1007
    else
1008
        yellow "          MacOS环境下,暂未提供GPU版本的PaddlePaddle安装包,将为您安装CPU版本的PaddlePaddle"
1009
        GPU=cpu
J
JiabinYang 已提交
1010
    fi
1011
    echo
J
JiabinYang 已提交
1012
}
1013

J
JiabinYang 已提交
1014 1015 1016 1017 1018 1019
function macos() {
  path='http://paddlepaddle.org/download?url='
  AVX=`sysctl -a | grep cpu | grep AVX1.0 | tail -1 | grep AVX`

  while true
      do
1020

J
JiabinYang 已提交
1021
        checkMacPaddleVersion
1022

J
JiabinYang 已提交
1023
        checkMacPythonVersion
1024

J
JiabinYang 已提交
1025
        checkMacAVX
1026

J
JiabinYang 已提交
1027
        checkMacGPU
1028 1029


1030
        green "*********************2. 开始安装*****************************"
1031
        echo
1032 1033
        yellow "即将为您下载并安装PaddlePaddle,请按回车键继续..."
        read -n1 -p ""
1034
        echo
J
JiabinYang 已提交
1035
        if [[ $paddle_version == "2" ]];then
J
JiabinYang 已提交
1036
            $python_root -m pip install paddlepaddle
1037 1038
            if [[ $? == "0" ]];then
               green "安装成功,可以使用: ${python_root} 来启动安装了PaddlePaddle的Python解释器"
J
JiabinYang 已提交
1039
               break
1040
            else
J
JiabinYang 已提交
1041
               rm  $whl_cpu_release
1042
               red "未能正常安装PaddlePaddle,请尝试更换您输入的python路径,或者ctrl + c退出后请检查您使用的python对应的pip或pip源是否可用"
J
JiabinYang 已提交
1043 1044 1045 1046
               echo""
               echo "=========================================================================================="
               echo""
               exit 1
1047
            fi
J
JiabinYang 已提交
1048
        else
1049
            if [[ -f $whl_cpu_develop ]];then
1050
                $python_root -m pip install $whl_cpu_develop
1051
                if [[ $? == "0" ]];then
1052
                   rm -rf $whl_cpu_develop
1053 1054
                   # TODO add install success check here
                   green "安装成功!小提示:可以使用: ${python_root} 来启动安装了PaddlePaddle的Python解释器"
1055 1056
                   break
                else
1057
                   red "未能正常安装PaddlePaddle,请尝试更换您输入的python路径,或者ctrl + c退出后请检查您使用的python对应的pip或pip源是否可用"
1058 1059 1060
                   echo""
                   echo "=========================================================================================="
                   echo""
T
tianshuo78520a 已提交
1061
                   exit 1
1062 1063 1064
                fi
            else
                wget ${path}$whl_cpu_develop -O $whl_cpu_develop
1065
                if [[ $? == "0" ]];then
1066
                    $python_root -m pip install $whl_cpu_develop
1067
                    if [[ $? == "0" ]];then
J
JiabinYang 已提交
1068
                       rm  $wheel_cpu_develop
1069
                       green "安装成功,可以使用: ${python_root} 来启动安装了PaddlePaddle的Python解释器"
1070 1071
                       break
                    else
J
JiabinYang 已提交
1072
                       rm  $whl_cpu_release
1073
                       red "未能正常安装PaddlePaddle,请尝试更换您输入的python路径,或者ctrl + c退出后请检查您使用的python对应的pip或pip源是否可用"
1074 1075 1076
                       echo""
                       echo "=========================================================================================="
                       echo""
T
tianshuo78520a 已提交
1077
                       exit 1
1078 1079
                    fi
                else
J
JiabinYang 已提交
1080
                      rm  $whl_cpu_develop
1081
                      red "未能正常安装PaddlePaddle,请检查您的网络 或者确认您是否安装有 wget,或者ctrl + c退出后反馈至https://github.com/PaddlePaddle/Paddle/issues"
1082 1083 1084
                      echo""
                      echo "=========================================================================================="
                      echo""
T
tianshuo78520a 已提交
1085
                      exit 1
1086 1087
                fi
            fi
J
JiabinYang 已提交
1088
        fi
1089 1090 1091 1092
  done
}

function main() {
1093
  echo "*********************************"
1094
  green "欢迎使用PaddlePaddle快速安装脚本"
1095 1096
  echo "*********************************"
  echo
1097
  yellow "如果您在安装过程中遇到任何问题,请在https://github.com/PaddlePaddle/Paddle/issues反馈,我们的工作人员将会帮您答疑解惑"
1098
  echo
1099 1100 1101
  echo  "本安装包将帮助您在Linux或Mac系统下安装PaddlePaddle,包括"
  yellow "1)安装前的准备"
  yellow "2)开始安装"
1102 1103 1104 1105
  echo
  read -n1 -p "请按回车键进行下一步..."
  echo
  echo
1106
  green "*********************1. 安装前的准备*****************************"
1107 1108 1109
  echo
  echo "Step 1. 正在检测您的操作系统信息..."
  echo
1110
  SYSTEM=`uname -s`
1111 1112
  if [[ "$SYSTEM" == "Darwin" ]];then
  	yellow "          您的系统为:MAC OSX"
1113
    echo
1114 1115
  	macos
  else
1116
 	yellow "          您的系统为:Linux"
1117
  echo
1118
	  OS=`cat /etc/issue|awk 'NR==1 {print $1}'`
1119
	  if [[ $OS == "\S" ]] || [[ "$OS" == "CentOS" ]] || [[ $OS == "Ubuntu" ]];then
1120
	    linux
1121
	  else
1122
	    red "您的系统不在本安装包的支持范围,如您需要在windows环境下安装PaddlePaddle,请您参考PaddlePaddle官网的windows安装文档"
1123 1124 1125 1126
	  fi
  fi
}
main