尝试安装PyGame时出现问题

时间:2016-07-04 17:34:22

标签: python bash pygame osx-yosemite

这已经成为一个问题了几个小时了,它开始让我烦恼。 我正在使用OS X Yosemite,我的想法是开始使用Python与PyGame一起开发游戏。

我想在python 3.x而不是2.x

中使用PyGame

无论如何..我按照大量说明如何下载和安装但遗憾的是结果我没有运气。 PyGame的官方guide指南之一也不起作用。 我使用this tutorial并且发生了下面的这些特定问题/错误。

请注意,我已下载并安装了:

  • 来自here的Xcode(7.2)的命令行工具10.10

  • 来自here

  • 的XQuartz
  • 来自here

  • 的自制软件
  • Python 3.4

Python版本?: enter image description here

mercurial软件包在安装时无效,显然存在一些错误..

安装mercurial: enter image description here

测试它是否有效: enter image description here

在hg文件中:

#!/usr/local/bin/python3.4
#
# mercurial - scalable distributed SCM
#
# Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.

import os
import sys

if os.environ.get('HGUNICODEPEDANTRY', False):
    reload(sys)
    sys.setdefaultencoding("undefined")


libdir = '../lib/python3.4/site-packages/'

if libdir != '@' 'LIBDIR' '@':
    if not os.path.isabs(libdir):
        libdir = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                              libdir)
        libdir = os.path.abspath(libdir)
    sys.path.insert(0, libdir)

# enable importing on demand to reduce startup time
try:
    from mercurial import demandimport; demandimport.enable()
except ImportError:
    import sys
    sys.stderr.write("abort: couldn't find mercurial libraries in [%s]\n" %
                     ' '.join(sys.path))
    sys.stderr.write("(check your install and PYTHONPATH)\n")
    sys.exit(-1)

import mercurial.util
import mercurial.dispatch

for fp in (sys.stdin, sys.stdout, sys.stderr):
    mercurial.util.setbinary(fp)

mercurial.dispatch.run()

在文件夹中:/usr/local/Cellar/mercurial/3.8.3/lib/python3.4/site-packages

enter image description here

文件夹内:/ Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages enter image description here

请注意我已经更改并将一些文件添加到不同的路径等。

0 个答案:

没有答案