【发布时间】: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 一书所做的一些工作(目前处于草稿形式)。
【问题讨论】: