osx mountain lion - NumPy in IDLE (Python 3.3.2) on Mac OSx 10.8 -
i know may repeat question, answers i've found on here way above head. i'm new @ python, use numpy in idle (python 3.3.2). idle doesn't seem access numpy comes w/ osx 10.8 (which python 2.7). can't find numpy python 3 installer mac osx. of instructions i've found complicated , assume know lot more , still wouldn't me idle if execute them. can point me instructions beginners on installation? example, start compiling step - i'm not sure how this. i'd appreciate can give. thanks.
if fresh python install:
- type
which python
terminal window make sure correct python selected. guessing should/library/frameworks/python.framework/versions/3.3
. - download
setuptools
,pip
https://pypi.python.org
, untar both (can double click in osx window). - in terminal change directory downloaded setuptools folder:
cd ~/downloads/setuptools-x.x.x
- type
python setup.py install
. - repeat 3 & 4 pip.
- now can type
pip install numpy
, download , install numpy you.
you might want install through single executable package. free example can found here (anaconda), includes entire scipy suite , extras. not need majority of these, include numpy , scipy in convenient package.
Comments
Post a Comment