문제

I installed python in Win7. I need to add python-msp430-tools 0.6 to my python. Hence I downloaded python-msp430-tools 0.6 from https://pypi.python.org/pypi/python-msp430-tools . But there is a problem? How can I add this tool to my python.

(By the way, I downloaded msp-gcc for mingw and fixed PATH.)

I will appreciate any help.

Best Regards.

도움이 되었습니까?

해결책

You need to use 'easy_install' script from your $PYTHON_PATH/bin folder. Like:

easy_install python-msp430-tools

It will download package from pypi and install it. You dont have to download it by hand. You also can use pip in the same way after installing it. So once:

easy_install pip

Then:

pip install python-msp430-tools

Pip is much better in package management.

다른 팁

for installing packages from pypi it is better to use pip in my idea. take a look at python on windows

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top