我有以下
Directory: C:\TWS API\source\pythonclient
Mode LastWriteTime Length Name
---- ------------- ------ ----
d----- 3/17/2018 9:38 PM ibapi
d----- 3/17/2018 9:38 PM tests
-a---- 12/28/2017 5:34 PM 98 .gitignore
-a---- 12/28/2017 5:34 PM 37 MANIFEST.in
-a---- 12/28/2017 5:34 PM 3269 README.md
-a---- 12/28/2017 5:34 PM 526 setup.py
-a---- 12/28/2017 5:34 PM 87 tox.ini
并希望安装模块ibapi。
我在这里做错了什么?
PS C:\TWS API\source\pythonclient> python setup.py install
python : The term 'python' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a
path was included, verify that the path is correct and try again.
At line:1 char:1
+ python setup.py install
+ ~~~~~~
+ CategoryInfo : ObjectNotFound: (python:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
答案 0 :(得分:1)
请注意错误:
python:术语“python”未被识别为cmdlet的名称, 功能,脚本文件或可操作程序。检查拼写 名称,或者如果包含路径,请验证路径是否正确 再试一次。
可能没有在环境变量中设置python可执行文件,在环境变量中设置它或导航到安装了python的目录。
答案 1 :(得分:0)
尝试: `python3 setup.py install
我的系统上安装了python 2和3,所以我必须指定。