我需要导入常量库,但它不起作用...
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 3 上使用 anaconda 10,并尝试使用 conda 安装此库:
conda install -c auto constants
但它仍然不起作用...
from . import constants
在当前目录中导入一个名为 Constants 的 Python 文件。
我怀疑你把它安装在你的目录中?
所以就import constants
表示在当前目录中查找我相信
在最后一行不需要使用from
。只需输入:
import constants
这应该可以解决问题。