AlexAux 发表于 2020-8-30 13:52

python的core.config库问题

用py2.7运行脚本时,提示ImportError: No module named core.config


我尝试pip install config,但是再次运行时,还是提示这个,表哥帮我看看

SagJoker 发表于 2020-8-30 14:19

pip install core.config
这样?

Ealrang 发表于 2020-8-30 14:19

试试 from 父文件夹 import 导入项

syrmb 发表于 2020-8-30 14:41

不需要安装 你这个是导入项目下的自定义模块吧试试from core import config

AlexAux 发表于 2020-8-30 16:17

syrmb 发表于 2020-8-30 14:41
不需要安装 你这个是导入项目下的自定义模块吧试试from core import config



表哥不行啊

rsnodame 发表于 2020-8-31 17:53

import sys
print sys.path

看一下那些目录下有没有core这个文件夹

AlexAux 发表于 2020-9-1 01:26

rsnodame 发表于 2020-8-31 17:53
import sys
print sys.path



表哥貌似没有这个目录,我这个用的是python3

nightcat 发表于 2020-9-1 01:29

pip install core

源代码不用改,还是
import core.config

AlexAux 发表于 2020-9-1 01:43

nightcat 发表于 2020-9-1 01:29
pip install core

源代码不用改,还是




表哥报错了,说是版本不支持类似的

nightcat 发表于 2020-9-1 02:33

AlexAux 发表于 2020-9-1 01:43
表哥报错了,说是版本不支持类似的

用py2.7运行脚本时,提示ImportError: No module named core.config

你用的python2还是python3?
两个版本不兼容,
py2是: pip install core
py3是: pip3 install core
----------------------------
页: [1] 2
查看完整版本: python的core.config库问题