gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 21:54:51 25 4
gpt4 key购买 nike

简短摘要

我可以将一个包上传到 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-信息

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

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

更新

请注意,如果我将所有文件折叠到根目录中(我最终不想这样做),错误就会消失。不幸的是,我经常需要我的根目录中的目录,而我根据评论所做的任何尝试都没有解决这个问题。

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

注意这是基于我在 Python 101 一书中所做的一些工作,作者是 Michael Driscoll(目前处于草稿状态)。

最佳答案

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

$ 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,然后尝试导入您的包。

关于python - 使用 pip 从 pyPI 安装我自己的模块不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23556128/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com