1. 程式人生 > >學會了 python 的pip方法安裝第三方庫

學會了 python 的pip方法安裝第三方庫

for clas 復制 extern esc 輸入 tran boot nload

超級開心啊!!!!!!!!!!!!!

win10

打開cmd

Installing with get-pip.py

To install pip, securely download get-pip.py. [1]:

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

Then run the following:

python get-pip.py





先復制curl這行 執行完復制
python get-pip.py
然後執行即可





有個好玩的進度條庫
輸入 pip install Tqdm
即可
在pycharm裏新建projec 新建python file
輸入
import time
from tqdm import tqdm

pbar = tqdm(["a", "b", "c", "d"])
for char in pbar:
# 設置描述
pbar.set_description("Processing %s" % char)
time.sleep(10)
run 就可以看看效果了


學會了 python 的pip方法安裝第三方庫