i'm learning python from on online book and have come to the stage where the author asks the reader to install pip, virtualenv, nose, and distribute. to make it fun, he asks the reader to figure out how :-) well, i'm an utter novice and have spent the last week trying to figure that out on the basis of recommendation i found, i've downloaded homebrew and tried to use pip (sudo easy_install). it runs ok and says something about finishing processing dependencies. yet when i try nosetests, i get a 'command not found'.
Edit - Zmo, i tried what you suggested and this is the result. thanks for your help.
unknown-00-25-00-47-cc-3d:~ k$ sudo /usr/bin/easy_install pip Password: Searching for pip Best match: pip 1.5.4 Processing pip-1.5.4-py2.7.egg pip 1.5.4 is already the active version in easy-install.pth Installing pip script to /usr/local/bin Installing pip2.7 script to /usr/local/bin Installing pip2 script to /usr/local/bin
Using /Library/Python/2.7/site-packages/pip-1.5.4-py2.7.egg Processing dependencies for pip Finished processing dependencies for pip unknown-00-25-00-47-cc-3d:~ k$ sudo /usr/local/bin/pip install nosetests Downloading/unpacking nosetests Could not find any downloads that satisfy the requirement nosetests Cleaning up... No distributions at all found for nosetests Storing debug log for failure in /Users/k/Library/Logs/pip.log
I have two requests for the community: 1) can someone help me solve this specific problem? (i use a 2009 mac with mavericks) and 2) can someone point me in the direction of some resources online where an utter novice like myself can learn about packages for python? (every resource i see assumes some level of knowledge, which i don't have).
thanks in advance, K.