Python目錄下中沒有Script資料夾

2021-06-29 04:12:26 字數 950 閱讀 4794

其中需要將c:\python27\scripts 和 c:\python27 新增到系統路徑中。

計算機屬性-遠端設定-高階(環境變數)-系統變數path後面新增scrips的路徑

而我的python目錄中沒有script資料夾,裡面是些easy_install相關的內容,直接安裝setuptools即可自動生成script資料夾。

ez_setup.py ,在cmd中執行。

中途出錯:

unicodedecodeerror: 'ascii' codec can't decode byte 0xb0 in position 1: ordinal not in range(128)  

something went wrong during the installation.  

see the error message above.  

解決方法:

開啟d:\python27\lib下的 mimetypes.py 檔案,找到大概256行:『default_encoding = sys.getdefaultencoding()』

在這行前面新增三行:

if sys.getdefaultencoding() != 'gbk':  

reload(sys)  

sys.setdefaultencoding('gbk')  

default_encoding = sys.getdefaultencoding()   

注意python的語法的格式。複製或者手工輸入時,留意前面用的tab空位。不然這個問題沒解決反倒引入了其它問題。

以上問題解決後,就可以很方便的安裝python模組啦

安裝reportlab

結果:easy_install 說不是內部或者外部命令

後來發現是在c盤下執行該命令,進入使用者路徑(c:\users\adminstrator\ 後執行安裝成功)

Python中刪除特定目錄下的檔案

widnows中的指令碼不好用,所以投向python,用python協助工作,很好 import os,sys from stat import import shutil delpathname urelease def walktree top,callback for f in os.list...

解決MySQL5 7安裝目錄下沒有data資料夾

原始安裝目錄下發現data資料夾不存在 原因 安裝mysql的時候只安裝了部分 正確安裝方式是選擇第乙個 完整安裝 建議解除安裝重灌 若之後重新安裝出現mysql connector net 無法解除安裝等問題 建議用mysql壓縮包解壓安裝 mysql壓縮包安裝方法 解決辦法 管理員 命令提示符 ...

python 檢視目錄下所有目錄和檔案

python檢視目錄下所有的子目錄和子檔案 python遞迴遍歷目錄結構 我喜歡第一種 import json,os def list dir path,res for i in os.listdir path temp dir os.path.join path,i ifos.path.isdir...