compile_Windows_en.md 4.2 KB
Newer Older
1
# **Compile on Windows from Source Code**
2 3 4

This instruction will show you how to compile PaddlePaddle on a *64-bit desktop or laptop* and Windows 10. The Windows systems we support must meet the following requirements:

5
* Windows 10 Professional Edition / Enterprise Edition
6 7 8 9 10 11 12 13 14 15
* Visual Studio 2015 Update3

## Choose a compilation method

We provide one compilation method under the Windows system:

* Direct source code compilation

Since the situation on host machine is more complicated, we only support specific systems.

16
Please note: The current version does not support NCCL and distributed related functions.
17 18 19 20 21 22 23 24


### ***Local compilation***

**Please strictly follow the following instructions step by step**

1. Check that your computer and operating system meet our supported compilation standards

25
    * Windows 10 Professional Edition / Enterprise Edition
26

27
    * Visual Studio 2015 Update3
28 29 30

2. Install the necessary tools i.e. cmake, git and python :

31
    > Cmake requires version 3.0 and above, which can be downloaded from the official website and added to the environment variable. [Download here](https://cmake.org/download/).
32

33
    > Git can be downloaded on the official website and added to the environment variable. [Download here](https://gitforwindows.org/).
34

35
    > Python requires version 2.7 and above, and ensure that modules such as numpy, protobuf, wheel are installed. [Download here](https://www.python.org/download/releases/2.7/).
36 37


38
        * To Install numpy package you can use command `pip install numpy` or command `pip3 install numpy`
39

40
        * To Install protobuf package you can use command `pip install protobuf` or command `pip3 install protobuf`
41

42
        * To Install Wheel package you can use command `pip install wheel` or `pip3 install wheel`
43 44 45 46


3. Clone the PaddlePaddle source in the Paddle folder in the current directory and go to the Paddle directory:

47 48
    - `git clone https://github.com/PaddlePaddle/Paddle.git`
    - `cd Paddle`
49

50
4. Switch to a more stable release branch for compilation :
51

52
    - `git checkout release/1.5`
53 54 55

5. Create a directory called build and enter it:

56 57
    - `mkdir build`
    - `cd build`
58 59 60

6. Execute cmake:

61 62
    > For details on the compilation options, see [the compilation options list](../Tables.html/#Compile).
    * For users who need to compile **the CPU version PaddlePaddle**:
63

64 65 66
        For Python2:`cmake .. -G "Visual Studio 14 2015 Win64" -DPYTHON_INCLUDE_DIR = $ {PYTHON_INCLUDE_DIRS}
            -DPYTHON_LIBRARY = $ {PYTHON_LIBRARY}
            -DPYTHON_EXECUTABLE = $ {PYTHON_EXECUTABLE} -DWITH_FLUID_ONLY = ON -DWITH_GPU = OFF -DWITH_TESTING = OFF -DCMAKE_BUILD_TYPE =Release`
67 68


69 70 71
        For Python3: `cmake .. -G "Visual Studio 14 2015 Win64" -DPY_VERSION = 3.5 -DPYTHON_INCLUDE_DIR = $ {PYTHON_INCLUDE_DIRS}
            -DPYTHON_LIBRARY = $ {PYTHON_LIBRARY}
            -DPYTHON_EXECUTABLE = $ {PYTHON_EXECUTABLE} -DWITH_FLUID_ONLY = ON -DWITH_GPU = OFF -DWITH_TESTING =OFF -DCMAKE_BUILD_TYPE=Release`
72 73


74
7. Some third-party dependencies (openblas, snappystream) currently require users to provide pre-compiled versions, or download pre-compiled files from `https://github.com/wopeizl/Paddle_deps` and place the entire `third_party` folder in the `build` directory.
75 76 77 78 79

8. Use Blend for Visual Studio 2015 to open `paddle.sln` file, select the platform `x64`, configure with `Release`, then begin to compile

9. Having compiled successfully, go to the `\paddle\build\python\dist`directory and find the generated `.whl` package:

80
    `cd \paddle\build\python\dist`
81 82 83

10. Install the compiled `.whl` package on the current machine or target machine:

84
     `pip install (whl package name)` or `pip3 install (whl package name)`
85 86 87 88 89 90 91 92 93 94 95 96 97

Congratulations, now you have completed the process of compiling PaddlePaddle natively.


### ***Verify installation***

After the installation is complete, you can use: `python` to enter the Python interpreter and then use `import paddle.fluid`. If there is no error prompted, the installation is successful.

### ***How to uninstall***

Please use the following command to uninstall PaddlePaddle:

* ***CPU version of PaddlePaddle*** : `pip uninstall paddlepaddle` or `pip3 uninstall paddlepaddle`
98 99

* ***GPU version of PaddlePaddle*** : `pip uninstall paddlepaddle-gpu` or `pip3 uninstall paddlepaddle-gpu`