使用pip从pyPI安装我自己的模块不起作用

2024-10-01 07:13:02 发布

您现在位置:Python中文网/ 问答频道 /正文

简短摘要

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


详细摘要

我正在cheese shop(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

_uinit_uu.py文件如下所示:

^{pr2}$

1。在pyPI注册包

也就是说,在命令行中,我输入:

python setup.py register

返回:

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

注意我的设置.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。导入包(not)

这就是我遇到问题的地方。我打开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

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

更新

注意,如果我将所有文件都压缩到根目录中(我最终不想这样做),错误就会消失。不幸的是,我经常需要根目录中的目录,而我尝试过的基于注释的方法并没有解决这个问题。在

我还在寻找答案,这里的讨论看起来很有希望: 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?

注意 这是基于我正在用michaeldriscoll的《python101》所做的一些工作(它现在是草稿)。在


Tags: topybuildcreatingaddsetupwinrunning
2条回答

您的软件包确实安装了,只是没有按您预期的方式安装:

$ 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
>>> 

你的设置.py表示要安装两个模块,“add”和“subtract”,而不是安装名为mymathFoo的包。把添加.py以及减法.py在名为“mymathFoo”的文件夹中,并将py_modules=['mymathFoo']设置为设置.py. 在

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

它对我有用:

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

虽然你的模块什么也不导出。从源代码中删除了add.py和{},似乎是因为@Stu Gla的回答改变了包。在

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

^{pr2}$

相关问题 更多 >