d:\pythonproject\sustudy>pip
'pip' 不是內部或外部命令,也不是可執行的程式
或批處理檔案。
示例
我是預設安裝在c盤的
c:\users
\fadi.su>cd \
c:\>cd python27\scripts
示例
searching for pip
best match: pip 9.0
.1adding pip 9.0
.1to easy-install.pth file
installing pip-script.py script
to c:\python27\scripts
installing pip.exe script
to c:\python27\scripts
installing pip.exe.manifest script
to c:\python27\scripts
installing pip3.5-script.py script
to c:\python27\scripts
installing pip3.5.exe script
to c:\python27\scripts
installing pip3.5.exe.manifest script
to c:\python27\scripts
installing pip3-script.py script
to c:\python27\scripts
installing pip3.exe script
to c:\python27\scripts
installing pip3.exe.manifest script
to c:\python27\scripts
using c:\python27\lib\site-packages
processing dependencies for pip
finished processing dependencies for pip
我的路徑是:c:\python27\scripts
複製路徑,然後貼上追加到
右鍵我的電腦->系統屬性->高階->編輯系統變數,例如下面截圖
儲存新的即可
重新開啟cmd視窗,輸入 pip 即可
python2 執行緒基礎
執行緒基礎 匯入,建立函式,建立線和執行 import thread import time 為執行緒定義乙個函式 defprint time threadname,delay count 0 while count 5 time.sleep delay count 1 print s s thre...
Python 2 基礎中的基礎知識
我選擇最新版python直譯器版本 從最簡單的hello world 開始 print hello world hello world 就像最簡單的計算器 不用多說,一看就懂 2 6 8 2 6 0.3333333333333333 2 6 0 5 9 45 5.0 6 0.833333333333...
Python2語法簡記(1) 基礎語法
python中一切皆物件。數字 字串 元組 列表 字典 函式 方法 類 模組等等都是物件。python 中的一切都可以賦值給變數或者作為引數傳遞給函式。python 快取了某些不變的物件對其進行復用,而不是每次建立新的物件。python 的所有物件都有三個特性 身份 通過id 檢視物件的記憶體位址 ...