0

我正在尝试在 PyCharm 中运行 Koans。我已经下载了所有必要的程序。我试图在 pycharm 中打开“contemplate_koans”文件,但它响应以下消息:

import unittest
import sys

if __name__ == '__main__':
    if sys.version_info < (3, 0):
        print("\nThis is the Python 3 version of Python Koans, but you are " +
            "running it with Python 2!\n\n"
            "Did you accidentally use the wrong python script? \nTry:\n\n" +
            "    python3 contemplate_koans.py\n")
    else:
        if sys.version_info < (3, 3):
            print("\n" +
                "********************************************************\n" +
                "WARNING:\n" +
                "This version of Python Koans was designed for " +
                "Python 3.3 or greater.\n" +
                "Your version of Python is older, so you may run into " +
                "problems!\n\n" +
                "But lets see how far we get...\n" +
                "********************************************************\n")

        from runner.mountain import Mountain

        Mountain().walk_the_path(sys.argv)
4

1 回答 1

0

如果我从字面上理解这一点,看起来您打开文件进行编辑而不是使用 Python 执行它。您要么需要弄清楚如何执行它而不是从 PyCharm 中打开它,要么只从命令行运行它。

使用 Python 从命令行运行它的说明可以在项目说明中的“入门”部分下找到:

https://github.com/gregmalcolm/python_koans/blob/master/README.rst

于 2013-11-03T03:14:21.780 回答