Questions tagged «import»

将数据从外部源移动到平台,程序或数据集的一般过程。

6
ImportError:未命名模块-Python
我有一个具有以下目录结构的python应用程序: src | +---- main | +---- util | +---- gen_py | +---- lib 在包main中,我有一个名为MyServer.py的python模块,它具有如下的import语句: from gen_py.lib import MyService 为了使该语句起作用,我将以下行放在MyServer.py的开头: import sys sys.path.append('../gen_py/lib') 在终端中运行MyServer.py时,出现以下错误: ImportError:没有名为gen_py.lib的模块 我在这里想念的是什么?
68 python  import 

5
Pycharm导入RuntimeWarning在更新到2016.2之后
更新到新版本2016.2之后,我得到 RuntimeWarning: Parent module 'tests' not found while handling absolute import import unittest RuntimeWarning: Parent module 'tests' not found while handling absolute import import datetime as dt “ tests”是我的主应用程序包中的一个包,当我尝试在此文件夹中执行单元测试时会收到这些警告。此问题仅在更新到2016.2。之后出现。除了警告,其余代码也可以正常工作。 编辑:这是一个已知问题-https: //youtrack.jetbrains.com/issue/PY-20171。他们建议替换PyCharm安装文件夹中的utrunner.py。
67 python  import  pycharm 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.