Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.28 KB

installation_en.md

File metadata and controls

33 lines (24 loc) · 1.28 KB

Installation

Environment Dependency

  • Python>=3.6
  • PaddlePaddle>=2.0.0rc
# Install gpu version of paddlepaddle
pip install paddlepaddle-gpu==2.0.0rc

# Or install cpu version of paddlepaddle
# pip install paddlepaddle==2.0.0rc
  • Operating System: Windows/Mac/Linux

Installation Command

Before installing the PaddleHub, install the PaddlePaddle deep learning framework first. For more installation instructions, refer to PaddleQuickInstall

pip install paddlehub==2.0.0b

In addition to the above dependences, PaddleHub's pre-training models and pre-set datasets need to be downloaded through connecting to the server. Make sure that the computer can access the network. You can run PaddleHub offline if the relevant datasets and pre-set models are already available locally.

NOTE: Make sure that the computer can access the external network when the PaddleHub is used to download datasets and pre-training models. You can use server_check() to check the connection status between the local and remote PaddleHub-Server in the following methods:

import paddlehub
paddlehub.server_check()
# If OK, reply "Request Hub-Server successfully".
# If not OK, reply "Hub-Server unsuccessfully".