0

pysvnで作業しようとすると、次のエラーが発生します。

/usr/bin/python /Users/keith/Dev/Python/svntool.py 
Traceback (most recent call last):
File "/Users/keith/Dev/Python/svntool.py", line 8, in <module>
    import pysvn   File "/Users/keith/pysvn/__init__.py", line 99, in <module>
    import pysvn._pysvn_3_3 ImportError: dynamic module does not define init function (init_pysvn_3_3)

 Process finished with exit code 1

私のコードは次のようになります:

#!/usr/bin/env python3.3

import pysvn


def get_books(srcUrl, tgtPath):
    client = pysvn.Client()
    client.checkout(srcUrl, tgtPath)


def set_login(setCache=True, setInteractive=True, uid='', pwd=''):
    client = pysvn.Client()
    client.set_auth_cache(setCache)
    client.set_interactive(setInteractive)
    client.set_default_username(uid)
    client.set_default_password(pwd)


if __name__ == "__main__":
    set_login(True, True, '******', '******')
    #write_temp()
    get_books('https://free2.projectlocker.com/******/svn/MyProject/', './examples/pysvn')

昨日Pythonの学習を始めたことを考慮してください。その前にそれを見たことはありません。:)

私のgoogle-fuは私を失敗させており、SOでも何も見つかりません。任意のアイデア:

  1. このエラーはどういう意味ですか?
  2. どうすれば修正できますか?
4

0 に答える 0