【问题标题】:Installing my own module from pyPI, using pip, is not working使用 pip 从 pyPI 安装我自己的模块不起作用
【发布时间】:2014-06-26 16:37:41
【问题描述】:

简短摘要

我可以将一个包上传到 pyPI,然后使用 pip 安装它,但是当我尝试导入它时 Python 没有看到它(它说没有具有相关名称的模块)。我在 Windows 7 中使用 Python 2.7(Anaconda 发行版,使用 iPython 解释器)。


详细总结

我正在学习如何在奶酪店 (pyPI) 上传包 (mymathFoo),并尝试确保在上传后可以安装它。当我手动将包文件夹粘贴到我的 Lib/site-packages 目录中时,它会从我的解释器导入并正常工作。

我做了什么:

0。写包

这是一个带有加减模块(例如 add(1,2))的愚蠢的小包。目录结构如下:

\mymathFoo
    __init__.py
    add.py   #adds two numbers
    subtract.py  #subtract two numbers
    setup.py  #shown below
    README.txt  #simple description of package

__init__.py文件如下:

from add import add 
from subtract import subtract

1.在 pyPI 注册包

即从命令行输入:

python setup.py register

返回:

running register
running check
Registering mymathFoo to http://pypi.python.org/pypi
Server response (200): OK

注意我的 setup.py 文件是:

from distutils.core import setup

setup(name="mymathFoo", 
      version="0.6.2", 
      url="http://mymathfoo.net",
      maintainer='Math Foo',
      maintainer_email='mathfoo@math.org',
      py_modules=['add','subtract'],
      description="Silly little math turd to add/subtract.") 

请注意,如果我将其更改为 py_modules='mymathFoo',则会收到与以下相同的错误。

2。上传包 在命令行中,我输入:

python setup.py sdist bdist_wininst upload

反应是:

running sdist
running check
warning: sdist: manifest template 'MANIFEST.in' does not exist (using default fi
le list)

writing manifest file 'MANIFEST'
creating mymathFoo-0.6.3
copying files to mymathFoo-0.6.3...
copying README.txt -> mymathFoo-0.6.3
copying add.py -> mymathFoo-0.6.3
copying setup.py -> mymathFoo-0.6.3
copying subtract.py -> mymathFoo-0.6.3
creating dist
creating 'dist\mymathFoo-0.6.3.zip' and adding 'mymathFoo-0.6.3' to it
adding 'mymathFoo-0.6.3\add.py'
adding 'mymathFoo-0.6.3\PKG-INFO'
adding 'mymathFoo-0.6.3\README.txt'
adding 'mymathFoo-0.6.3\setup.py'
adding 'mymathFoo-0.6.3\subtract.py'
removing 'mymathFoo-0.6.3' (and everything under it)
running bdist_wininst
running build
running build_py
creating build
creating build\lib
copying add.py -> build\lib
copying subtract.py -> build\lib
installing to build\bdist.win-amd64\wininst
running install_lib
creating build\bdist.win-amd64
creating build\bdist.win-amd64\wininst
creating build\bdist.win-amd64\wininst\PURELIB
copying build\lib\add.py -> build\bdist.win-amd64\wininst\PURELIB
copying build\lib\subtract.py -> build\bdist.win-amd64\wininst\PURELIB
running install_egg_info
Writing build\bdist.win-amd64\wininst\PURELIB\mymathFoo-0.6.3-py2.7.egg-info
creating 'c:\users\eric\appdata\local\temp\tmp65xxe2.zip' and adding '.' to it
adding 'PURELIB\add.py'
adding 'PURELIB\mymathFoo-0.6.3-py2.7.egg-info'
adding 'PURELIB\subtract.py'
removing 'build\bdist.win-amd64\wininst' (and everything under it)
running upload
Submitting dist\mymathFoo-0.6.3.zip to http://pypi.python.org/pypi
Server response (200): OK
Submitting dist\mymathFoo-0.6.3.win-amd64.exe to http://pypi.python.org/pypi
Server response (200): OK

事情似乎奏效了。到目前为止,一切都很好。

3.使用 pip 在本地安装此包。

那我去命令行用pip安装这个包:

pip install mymathFoo

我得到的:

Downloading/unpacking mymathFoo
  Downloading mymathFoo-0.6.3.zip
  Running setup.py (path:c:\users\eric\appdata\local\temp\pip_build_Eric\mymathF
oo\setup.py) egg_info for package mymathFoo
    Installing collected packages: mymathFoo
  Running setup.py install for mymathFoo
    Successfully installed mymathFoo
Cleaning up...

运行上述命令会导致将以下目录复制到我的Lib/site-packages 文件夹中:

mymathFoo-0.6.3-py2.7.egg-info

4.导入包(不)

这就是我遇到问题的地方。我打开我的 iPython 解释器(使用 Python 的 Anaconda 发行版,Windows 7):

import mymathFoo

我明白了:

Traceback (most recent call last):

  File "<ipython-input-7-b7486b6a0225>", line 1, in <module>
    import mymathFoo

ImportError: No module named mymathFoo

我错过了什么?为什么我可怜的小模块看不见?

更新

请注意,如果我将所有文件折叠到根目录(我最终不想这样做),错误就会消失。不幸的是,我经常希望在我的根目录中使用目录,而我基于 cmets 尝试过的任何东西都没有解决这个问题。

我仍在寻找答案,这里的讨论看起来很有希望: http://www.scotttorborg.com/python-packaging/index.html# 我会解决这个问题并发布我找到的任何解决方案。

讨论相关但不相同的问题

"ImportError: No module named httplib2" even after installation

how to install package with pypi in python 2.7?

注意 这是基于我对 Michael Driscoll 的 Python 101 一书所做的一些工作(目前处于草稿形式)。

【问题讨论】:

    标签: python pip pypi


    【解决方案1】:

    你的包确实安装了,只是不是你想要的方式:

    $ pip install mymathFoo
    Downloading/unpacking mymathFoo
      Using download cache from /Users/stu/tmp/pip-cache/http%3A%2F%2Fpypi.counsyl.com%2Froot%2Fpypi%2F%2Bf%2F64ef17a9135f05820c2d96050ce4315d%2FmymathFoo-0.6.3.zip
      Running setup.py egg_info for package mymathFoo
    
    Installing collected packages: mymathFoo
      Running setup.py install for mymathFoo
    
    Successfully installed mymathFoo
    Cleaning up...
    $ python
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import add
    >>> import subtract
    >>> 
    

    你的 setup.py 说要安装两个模块,“add”和“subtract”,而不是安装一个名为 mymathFoo 的包。将 add.py 和 subtract.py 放在名为 'mymathFoo' 的文件夹中,并在 setup.py 中设置 py_modules=['mymathFoo']。

    最后,您可以在不点击 pypi 的情况下测试您的包装。只需运行python setup.py install,然后尝试导入您的包。

    【讨论】:

    • Stu,你说得对,我正在导入单个函数,这不是我的目标。不幸的是,我这样做的原因是,当我使用 py_modules=['mymathFoo'] 获取 setup.py 元数据并使用 pip install mymathFoo --upgrade 进行安装时,即使 pip 安装模块似乎有效,我仍然得到 ImportError: No module named mymathFoo
    • Stu 写道“将 add.py 和 subtract.py 放在名为 'mymathFoo' 的文件夹中,并在 setup.py 中设置 py_modules=['mymathFoo']。”我试过了,尝试导入时遇到了同样的错误。当我将所有功能捆绑到根文件夹中的文件mymathFoo.py 中时,一切正常(请参阅 pyPI 的 mymathFoo v 0.6.7),但我想知道我对文件夹中的多个文件做错了什么。
    • mymathFoo 目录中有(空)__init__.py 文件吗?
    • 如果您只是在玩弄或测试上传到 pypi,请使用测试站点:testpypi.python.org/pypi
    【解决方案2】:

    它对我有用:

    >>> import mymathFoo
    >>> dir(mymathFoo)
    ['__builtins__', '__doc__', '__file__', '__name__', '__package__', '__path__']
    

    虽然你的模块什么也没导出。自从@Stu-Gla 的回答以来,您似乎更改了您的包,因为您从源中删除了add.pysubtract.py

    顺便说一句,你不需要注册一个虚拟包到pypi来测试它,你也可以使用pip在本地安装一个包:

    pip install /path/to/sources # path where the setup.py is
    

    【讨论】:

    • zmo 是的,我做了几个版本。我认为我发布的是 0.1 版,我需要查看一下并澄清我在帖子中谈论的是哪些,以及哪些错误是哪些。我现在正在大量处理文档,并将总结我的发现。 (感谢您指出我没有这样做的本地安装选项)。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-12-25
    • 1970-01-01
    • 2016-01-30
    • 2017-04-27
    • 1970-01-01
    相关资源
    最近更新 更多