Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不确定这是否是罗德的问题。 Rodeo 找不到 Jupyter 可以找到并导入的包。当我运行“py -m pip list”时,我得到一个包列表。包装(特别是“Quandl”在那里
我可以导入和使用这些使用 Jupyter 找到的包。当我尝试使用 Rodeo 时,它告诉我包不存在。
开始感到沮丧。
我的路径设置不正确。我喜欢使用 Rodeo。
我仍然不知道为什么它不起作用,但我可以使用以下使用 Rodeo 安装程序导入包:
import pip pip.main(['install','quandl'])
以下是使用 pip 安装包的方法,pip 是一种流行的 Python 模块包管理器。
import pip pip.main(['install','nltk']) from nltk import *