我可以翻译一个文件。但我不明白如何翻译整个目录。来自docs:
To translate an entire project from one directory tree to another use:
$ 2to3 --output-dir=python3-version/mycode -W -n python2-version/mycode
你能给我一个具体的例子吗?我在D:\Dir1
中有python2文件,想要在D:\Dir2
中获取新文件。我现在在Dir1
内的c:\Users\........\Python36\Tools\scripts\2to3.py -w
输入XPath
那么我应该使用什么命令?
答案 0 :(得分:4)
尝试以下方法:
D:\Dir1> c:\Users........\Python36\Tools\scripts\2to3.py --output-dir=D:\Dir2 -W -n .\
请注意,它是-W
(大写W
)。
例如,我从我的主目录运行脚本:
┌─[hjpotter92:Hedwig]─[C:\Users\hjpotter92]
└──$ "C:\Program Files\Python\Tools\Scripts\2to3.py" -o Downloads\newFoo -W -n Downloads\Foo