How to download tensorflow at China (how to download big file in china)

You know, they have set a GFW.

So you probably can not install it directly from pypi by `pip3 install tensorflow`.

But you can use `wget -c **.wheel` to download that package, then install it with `pip3 install **.wheel`.

`-c` in `wget` means `auto resume downloading`.