PyPDF2 não será importado

Oi, eu estou apenas começando com python e tentando obter algumas bibliotecas necessárias instaladas. Usando o Python 3.4.1 no OS X. Instalei o PyPDF2 (com suposto sucesso), mas não consigo usar as ferramentas:

    sh-3.2# port select --list python
    Available versions for python:
        none
        python25-apple
        python26
        python26-apple
        python27-apple
        python34 (active)
    sh-3.2# pip install PyPDF2
    Requirement already satisfied (use --upgrade to upgrade): PyPDF2 in /opt/local/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages
Cleaning up...
sh-3.2# 

...

import PyPDF2
Traceback (most recent call last):
  File "<pyshell#0>", line 1, in <module>
    import PyPDF2
ImportError: No module named 'PyPDF2'
>>> 

Estou perdendo um passo? Ou o PyPDF2 não é suportado no py3.4.1?

questionAnswers(3)

yourAnswerToTheQuestion