- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在 Python 3.6.0rc1 中发现了隐式命名空间包的奇怪行为。你能告诉我我错了吗还是 Python 3.6 错误?
我正在使用命名空间包 marrow
,它有两个独立的包 marrow.util
和 marrow.mailer
。第二个依赖于第一个。
假设我们在 site-packages
中为 Python 2.7、3.5 和 3.6 安装了 marrow.util
:
$ ls -la /usr/lib/python*/site-packages/marrow
/usr/lib/python2.7/site-packages/marrow:
total 24
drwxr-xr-x. 3 root root 4096 Dec 23 12:23 .
drwxr-xr-x. 196 root root 16384 Dec 23 12:23 ..
drwxr-xr-x. 3 root root 4096 Dec 23 12:23 util
/usr/lib/python3.5/site-packages/marrow:
total 12
drwxr-xr-x. 3 root root 4096 Dec 23 12:24 .
drwxr-xr-x. 99 root root 4096 Dec 23 12:24 ..
drwxr-xr-x. 4 root root 4096 Dec 23 12:24 util
/usr/lib/python3.6/site-packages/marrow:
total 12
drwxr-xr-x. 3 root root 4096 Dec 23 14:25 .
drwxr-xr-x. 37 root root 4096 Dec 23 14:25 ..
drwxr-xr-x. 4 root root 4096 Dec 23 14:25 util
这里没有__init__.py
文件,这是正确的,因为marrow
是一个命名空间包。您可以在安装期间看到此日志消息:
Skipping installation of <deleted>/site-packages/marrow/__init__.py (namespace package)
然后您在其他目录中构建(但未安装)marrow
命名空间包 marrow.mailer
的第二部分。例如像这样:
$ pwd
/builddir/build/BUILD/marrow.mailer-4.0.2
$ ls
coverage.xml debuglinks.list elfbins.list LICENSE.txt marrow.mailer.egg-info README.textile setup.py debugfiles.list debugsources.list example marrow PKG-INFO setup.cfg test
$ ls marrow/
__init__.py __init__.pyc mailer __pycache__
当我在此文件夹中运行 Python 2.7.12 或 3.5.2 并尝试导入 marrow.util
(来自站点包)时,它按预期工作。
$ pwd
/builddir/build/BUILD/marrow.mailer-4.0.2
$ python2
Python 2.7.12 (default, Sep 29 2016, 12:52:02)
[GCC 6.2.1 20160916 (Red Hat 6.2.1-2)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import marrow.util
>>>
$ python3.5
Python 3.5.2 (default, Sep 14 2016, 11:28:32)
[GCC 6.2.1 20160901 (Red Hat 6.2.1-1)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import marrow.util
>>>
但是当我尝试使用 Python 3.6 导入相同的模块时,它失败了:
$ python3.6
Python 3.6.0rc1 (default, Dec 10 2016, 14:50:33)
[GCC 6.2.1 20160916 (Red Hat 6.2.1-2)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import marrow.util
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'marrow.util'
>>>
当我尝试在 Mock 中将 marrow.mailer
构建为 RPM 包时,我发现了这个问题。使用 Python 2.7 和 3.5 一切正常,但 Python 3.6 无法从站点包导入 marrow.util
,因此 marrow.mailer
的测试在 RPM 构建期间失败。
失败测试的回溯示例:
Traceback:
test/test_addresses.py:8: in <module>
from marrow.mailer.address import Address, AddressList, AutoConverter
marrow/mailer/__init__.py:12: in <module>
from marrow.mailer.message import Message
marrow/mailer/message.py:21: in <module>
from marrow.mailer.address import Address, AddressList, AutoConverter
marrow/mailer/address.py:12: in <module>
from marrow.util.compat import basestring, unicode, unicodestr, native
E ModuleNotFoundError: No module named 'marrow.util'
我在 Python 3.6 的变更日志中找不到与此问题相关的任何内容。
感谢您的帮助。
编辑:我已经在 Python 3.6 中检查了 sys.path
,一切看起来都不错:
$ python3.6
Python 3.6.0rc1 (default, Dec 10 2016, 14:50:33)
[GCC 6.2.1 20160916 (Red Hat 6.2.1-2)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys.path
['', '/usr/lib64/python36.zip', '/usr/lib64/python3.6', '/usr/lib64/python3.6/lib-dynload', '/usr/lib64/python3.6/site-packages', '/usr/lib/python3.6/site-packages']
>>>
编辑 2:
因为我仍然找不到任何解决方案并且我没有任何回应,所以我创建了一个简单的 Bash 脚本来重现我的情况。您唯一需要的是 Python 3.5 和 Python 3.6。
#!/bin/bash
# Change this to run script with different Python
#PYTHON=python3.5 # system Python 3.5
PYTHON=~/temp/Python-3.6.0/python # compiled Python 3.6
# Create venv and activate
$PYTHON -m venv venv
source ./venv/bin/activate
# Install marrow.util package as a part of namespace package marrow
pip install marrow.util
# Create simple folder structure
mkdir -p marrow/mailer
# Create structure of __init__.py files
# For namespace package with related content
cat >> marrow/__init__.py << EOL
try: # pragma: no cover
__import__('pkg_resources').declare_namespace(__name__)
except ImportError: # pragma: no cover
__import__('pkgutil').extend_path(__path__, __name__)
EOL
# For mailer module just with print()
cat >> marrow/mailer/__init__.py << EOL
print('Imported!!!')
EOL
# Testing
# Importing marrow.util installed via pip in venv
$PYTHON -c "import marrow.util"
# Importing marrow.mailer created manually in PWD
$PYTHON -c "import marrow.mailer"
# deactivate venv
deactivate
如果您使用 Python 3.5 执行此脚本,您将看到 Python 3.5 可以导入通过 pip 安装的 marrow.util
但无法导入本地文件夹中的 marrow.mailer
.但是Python 3.6 可以导入本地模块marrow.mailer
而不能导入模块marrow.util
。
最佳答案
这些包没有使用隐式命名空间(“ native 命名空间”),或者如果您有使用隐式命名空间的版本,请固定您的依赖项以确保您不会混合使用新旧样式命名空间。它们是完全不相容的方法。
在您的 MCVE 示例代码中,您似乎试图构建一个 namespace 包(marrow/__init__.py
通过旧的 Python 2 显式声明替换技巧声明),又名。 pkg-resources-style namespace packages .这需要一个参数到 setup.py
(实际打包)并通过包安装安装元数据。具体来说,如果“开发中”安装并解压/解压到安装路径。没有它,就没有真正的 namespace ,并且您的代码将找不到,而不是使用这种旧样式。 (第一个,已安装的,将获胜。)
在 REPL 中,您可以导入命名空间,例如import marrow
,然后检查 marrow.__path__
以查看作为诊断辅助工具发现/包含的内容;我当前在这台机器上的 WIP 虚拟环境有 m.package
、m.schema
和 m.interface
,这对我来说很有意义最近一直在构建这些版本。更现代的方法 native namespacing确实允许更自由形式的混合,没有 __init__.py
的文件夹只是 一个命名空间,自动合并到 PYTHONPATH
,但这不是命名空间过去的工作方式,唉。 (所有参与者都需要 stub __init__.py
,所有命名空间级别都没有其他代码。)
我正在对整个 Marrow 生态系统进行现代化改造(如上所述,我已经开始了一些)以消除 Python 2 遗留问题并开始采用新的 Python 3 结构和方法,包括现代命名空间。对于仍然需要旧命名空间或在 Python 2 上的任何代码,所有内容和依赖项的主要版本提升应保持小于这些版本。
(我正在重新获取本地 Python 3.6 和 3.5 以进一步调查。)
关于Python 3.6.0 隐式命名空间包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41302558/
我正在处理一组标记为 160 个组的 173k 点。我想通过合并最接近的(到 9 或 10 个组)来减少组/集群的数量。我搜索过 sklearn 或类似的库,但没有成功。 我猜它只是通过 knn 聚类
我有一个扁平数字列表,这些数字逻辑上以 3 为一组,其中每个三元组是 (number, __ignored, flag[0 or 1]),例如: [7,56,1, 8,0,0, 2,0,0, 6,1,
我正在使用 pipenv 来管理我的包。我想编写一个 python 脚本来调用另一个使用不同虚拟环境(VE)的 python 脚本。 如何运行使用 VE1 的 python 脚本 1 并调用另一个 p
假设我有一个文件 script.py 位于 path = "foo/bar/script.py"。我正在寻找一种在 Python 中通过函数 execute_script() 从我的主要 Python
这听起来像是谜语或笑话,但实际上我还没有找到这个问题的答案。 问题到底是什么? 我想运行 2 个脚本。在第一个脚本中,我调用另一个脚本,但我希望它们继续并行,而不是在两个单独的线程中。主要是我不希望第
我有一个带有 python 2.5.5 的软件。我想发送一个命令,该命令将在 python 2.7.5 中启动一个脚本,然后继续执行该脚本。 我试过用 #!python2.7.5 和http://re
我在 python 命令行(使用 python 2.7)中,并尝试运行 Python 脚本。我的操作系统是 Windows 7。我已将我的目录设置为包含我所有脚本的文件夹,使用: os.chdir("
剧透:部分解决(见最后)。 以下是使用 Python 嵌入的代码示例: #include int main(int argc, char** argv) { Py_SetPythonHome
假设我有以下列表,对应于及时的股票价格: prices = [1, 3, 7, 10, 9, 8, 5, 3, 6, 8, 12, 9, 6, 10, 13, 8, 4, 11] 我想确定以下总体上最
所以我试图在选择某个单选按钮时更改此框架的背景。 我的框架位于一个类中,并且单选按钮的功能位于该类之外。 (这样我就可以在所有其他框架上调用它们。) 问题是每当我选择单选按钮时都会出现以下错误: co
我正在尝试将字符串与 python 中的正则表达式进行比较,如下所示, #!/usr/bin/env python3 import re str1 = "Expecting property name
考虑以下原型(prototype) Boost.Python 模块,该模块从单独的 C++ 头文件中引入类“D”。 /* file: a/b.cpp */ BOOST_PYTHON_MODULE(c)
如何编写一个程序来“识别函数调用的行号?” python 检查模块提供了定位行号的选项,但是, def di(): return inspect.currentframe().f_back.f_l
我已经使用 macports 安装了 Python 2.7,并且由于我的 $PATH 变量,这就是我输入 $ python 时得到的变量。然而,virtualenv 默认使用 Python 2.6,除
我只想问如何加快 python 上的 re.search 速度。 我有一个很长的字符串行,长度为 176861(即带有一些符号的字母数字字符),我使用此函数测试了该行以进行研究: def getExe
list1= [u'%app%%General%%Council%', u'%people%', u'%people%%Regional%%Council%%Mandate%', u'%ppp%%Ge
这个问题在这里已经有了答案: Is it Pythonic to use list comprehensions for just side effects? (7 个答案) 关闭 4 个月前。 告
我想用 Python 将两个列表组合成一个列表,方法如下: a = [1,1,1,2,2,2,3,3,3,3] b= ["Sun", "is", "bright", "June","and" ,"Ju
我正在运行带有最新 Boost 发行版 (1.55.0) 的 Mac OS X 10.8.4 (Darwin 12.4.0)。我正在按照说明 here构建包含在我的发行版中的教程 Boost-Pyth
学习 Python,我正在尝试制作一个没有任何第 3 方库的网络抓取工具,这样过程对我来说并没有简化,而且我知道我在做什么。我浏览了一些在线资源,但所有这些都让我对某些事情感到困惑。 html 看起来
我是一名优秀的程序员,十分优秀!