我在MacBook Pro上使用終端。 試圖在我的代碼中使用intelhex。我已經下載intelhex使用Intelhex - 導入錯誤 - macOSX終端
sudo pip install intelhex
成功
pip list
顯示intelhex安裝
運行我的代碼,並收到此錯誤:
Traceback (most recent call last): File "./myCode.py", line 20, in from intelhex import IntelHex ImportError: No module named 'intelhex'
我使用Python 2.7.11
ls /usr/local/bin
顯示intelhex的內容:
hex2bin.py
bin2hex.py
hexmerge.py
hexdiff.py
我要去哪裏錯了?
我在python2上安裝了軟件包,但我的代碼是在python3中。我用pip3在那裏安裝intelhex,現在它可以工作!謝謝 – AMK1234321