1. 程式人生 > >離線下載python庫whl安裝檔案的網址

離線下載python庫whl安裝檔案的網址

【時間】2018.11.16

【題目】離線下載python庫whl安裝檔案的網址

一、下載whl檔案

     大部分python庫都可以在清華的映象中下載,連結是:https://pypi.tuna.tsinghua.edu.cn/simple/  一般在連結後面加上庫名稱就可以找到該庫的各種版本,下面以下載Tensorflow安裝包為例。

輸入網址:https://pypi.tuna.tsinghua.edu.cn/simple/,在頁面中找到tensorfow,點選進去,此時會發現對應的網址為:https://pypi.tuna.tsinghua.edu.cn/simple/tensorflow/

,得到:

點選自己需要的版本,下載即可。

此時會發現對應的網址為:https://pypi.tuna.tsinghua.edu.cn/simple/tensorflow/

 

二、安裝whl檔案

使用pip install  ***.whl 安裝即可,注意檔案要輸入完整的路徑名,或者先cd 到檔案的目錄下。