python3 numpy mac_如何在Mac OSX 10.9上为Python 3.3.5安装NumPy

So I'm currently trying to use python so that it will receive an email and open an attachment, and one of the imports I found required was matplotlib.pyplot as plt. This in turn required Numpy and matplotlib, of which matplotlib was easy to import but I can't for the life of me get NumPy to work. I tried going through the repository, unzipping the file, using Xcode, terminal, and homebrew and none of them work. I'm currently continuing to try with terminal but whenever I try to install NumPy it fails. A friend recommended typing in "sudo python setup.py build" followed by "sudo python setup.py install", however an error occurred saying that there was no such file or directory as setup.py. Any way anyone could explain a method of installing NumPy that will work for python 3.3 (Most I see are for 2.7 which I don't have) that won't drive me insane? (In case the question I'm asking seems ridiculously easy to some, I'm only a high school student who's never done anything like this before, so I'm desperately in need of help)

解决方案

Welcome to both Python and Stack Overflow!

Your question is not at all uncommon. I've seen PhD graduates struggle with the exact same issues! While Python is a beautiful programming language with a very friendly community, getting started with the scientific Python stack can be quite a hassle.

There are two nice options for Python on Mac OS X, depending on how much time you want to invest into learning a particular set of tools. Both sets of tools are excellent and are well worth your time, but have a few tradeoffs. They are similar, though, in that they both will require you to spend some time in the terminal; I would recommend installing iTerm2 as your first step, if you haven't already.

Option 1: Homebrew

This option might be a bit more complicated, and may require more time invested up-front, but in the end can save you time and headaches because you have more control and freedom with how you want to set up Python and other command-line tools.

The first step is to install Homebrew. Currently, this is done with a single terminal command that will guide you through the installation process.

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

As part of it, you will have to install XCode (free from the App Store) and its associated command line tools. This is what makes this option time consuming.

Once you've installed Homebrew, you have access to a new command in the terminal, brew. You can use this command to install Python 3, NumPy, and Matplotlib.

# Install Python 3 that will be managed by Homebrew

brew install python3

# Get access to the scientific Python formulas

brew tap Homebrew/python

# Install Numpy and Matplotlib

brew install numpy --with-python3

brew install matplotlib --with-python3

Then you're good to go! This option gives you access to some powerful tools, like pip and brew. It means that in the future, when you want to install a new Python package, you should be able to pip install . Other command line tools, like for example git, can be installed with brew install git. It will make programming on Mac OS X a lot easier, in the end!

For some more information, see the Homebrew and Python wiki page.

Option 2: Anaconda

Anaconda is an all-in-one solution that will set up Python and all of the scientific Python tools all at once. All you have to do is download and install it!

Once installed, you should be able to run Python code that uses Numpy and Matplotlib. If you need a new Python package, you should be able to open up a terminal and do pip install . Some command-line tools and libraries are set up to install with conda install , but not nearly as many packages are available with conda as are available with brew. But, that might not be a big issue -- it depends what you end up using in the future!

The quick start guide is a good resource for the most common issues with Anaconda.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值