推荐学习书目
› Learn Python the Hard Way
Python Sites
› PyPI - Python Package Index
› http://diveintopython.org/toc/index.html
› Pocoo
值得关注的项目
› PyPy
› Celery
› Jinja2
› Read the Docs
› gevent
› pyenv
› virtualenv
› Stackless Python
› Beautiful Soup
› 结巴中文分词
› Green Unicorn
› Sentry
› Shovel
› Pyflakes
› pytest
Python 编程
› pep8 Checker
Styles
› PEP 8
› Google Python Style Guide
› Code Style from The Hitchhiker's Guide
xyangk
V2EX  ›  Python

进入 Python 可以 import, 写在文件里就导入失败

  •  
  •   xyangk · Dec 18, 2015 · 3577 views
    This topic created in 3935 days ago, the information mentioned may be changed or developed.

    我用pip install cloudinary安装了 cloudinary 准备上传照片.

    进入 python 可以正常导入这个库:
    >>> import cloudinary
    >>> import cloudinary.uploader
    >>> from cloudinary.uploader import upload
    >>> cloudinary.__file__
     '/home/xiao/anaconda2/lib/python2.7/cloudinary/__init__.pyc'
    >>> cloudinary.uploader.__file__
     '/home/xiao/anaconda2/lib/python2.7/cloudinary/uploader.pyc'

    但是import cloudinary.uploader写到文件里运行就会报错:
    xiao@ubuntu:~/Earth$ python cloudinary.py
    /home/xiao/Earth/cloudinary.pyc
    Traceback (most recent call last):
      File "cloudinary.py", line 8, in <module>
       import cloudinary
      File "/home/xiao/Earth/cloudinary.py", line 10, in <module>
       import cloudinary.uploader
    ImportError: No module named uploader

    可有大神知道怎么回事?

    5 replies  •  2015-12-18 14:43:27 +08:00
    squid157
        1
    squid157  
       Dec 18, 2015
    你改个文件名?我忘记 Python 的搜索路径了
    xyangk
        2
    xyangk  
    OP
       Dec 18, 2015
    @squid157 还真是 T_T, 太感谢你了!
    izoabr
        4
    izoabr  
       Dec 18, 2015
    搜索路径优先,你重名了,就没有去后面找了
    xyangk
        5
    xyangk  
    OP
       Dec 18, 2015
    @izoabr 大意了...
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Privacy   ·   Solana   ·   880 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 38ms · UTC 22:23 · PVG 06:23 · LAX 15:23 · JFK 18:23
    ♥ Do have faith in what you're doing.