我想使用uncompyle2編譯* .pyc文件(https://github.com/wibiti/uncompyle2)。所以,第一步我做的是克隆的git使用uncompyle2反編譯* .pyc文件
git clone https://github.com/wibiti/uncompyle2
下一步是寫
cd uncompyle2/
然後
python setup.py install
一切都很好,但是當我試圖寫命令可能幫助
uncompyle2 -h
它s只顯示
bash: uncompyle2: command not found
我在做什麼錯?
我的環境路徑是:C:\ Python27,我的Python版本是2.7。 我想要反編譯的Python文件版本也是2.7。系統爲Windows 8
最有可能的是在' C:\ Python27 \ Scripts \',你可能沒有在你的PATH中。一些簡單的文件搜索可以告訴你。 –
你試過'''pip安裝uncompyle2'''嗎? – TrakJohnson