我正在尝试使用 Quickly 编写一个应用程序。
我正在编写一个新的 Python 3 文件,其中导入了通过 (pystache) 安装的模块pip3
。但是,当我转到 时quickly package
,出现回溯错误:
alex@ubuntu:~/Development/templater$ quickly package
......
----------------------------------
Command returned some ERRORS:
----------------------------------
ERROR: Python module pystache not found
----------------------------------
Do you want to continue (this is not safe!)? y/[n]:
我如何确保它有效并且 pystache 被构建系统所接受?
根据答案的要求,我运行了which python
,它返回了/usr/bin/python
。
答案1
您是否安装了其他版本的 Python?我猜是这样的,所以当您安装模块时,它被设置为与 Python 2.7 一起使用。
在终端中输入此内容。我会告诉你它识别哪个 Python 版本。
which python
对于 python3.2(在我的系统上),它会说usr/bin/python3.2
。
如果您看到usr/bin/python
,则表明模块正在同步到 python 2.7 或安装的任何标准版本。