2

Running W10. Python3.2.3. Downloaded PyXB-1.2.4.tar.gz at a prompt ran "python setup.py install" Everything appears to be installed correctly. When I run pyxbgen I received file is not recognized... I search the drive only to find a file pyxbgen without an extension. I ran the setup process again, it looks like it validated the setup. What step did I miss? Why am I missing the executable?

4

1 回答 1

3

pyxbgen 是一个没有“.py”扩展名的 Python 文件,因此 Windows 不会将其视为可执行文件。您必须使用以下内容调用 Python 解释器:

C:\Python34\python.exe pyxbgen ...
于 2016-01-13T12:57:20.737 回答