1

我需要导入常量库,但它不工作......

import spacy
import pandas
import textacy
import pandas as pd
from pandas import Series
from . import constants

错误:

ImportError                               Traceback (most recent call last)
<ipython-input-49-df52595371dd> in <module>()
  4 import pandas as pd
  5 from pandas import Series
----> 6 from . import constants

ImportError: cannot import name 'constants'

我在 Windows 10 上使用 anaconda 3 并尝试使用 conda 安装此库:

conda install -c auto constants

但它仍然不起作用......

4

2 回答 2

3
from . import constants

在当前目录中导入一个名为 constants 的 python 文件。

我怀疑你将它安装在你的目录中?

所以就这样做import constants

. 意味着查看当前目录我相信

于 2018-10-22T09:45:20.227 回答
0

from在最后一行中不需要使用。只需键入:

import constants

这应该够了吧。

于 2018-10-22T10:25:34.903 回答