我只是下载文件以在python中构建API - 该API的简短tuto建议为了安装模块,必须执行以下操作:
* you can use this to build a wheel
python3 setup.py bdist_wheel
* you can use this to install the wheel
python3 -m pip install --user --upgrade dist/ibapi-9.73.1-py3-none-any.whl
这看起来非常简单,但是我完全不喜欢python的这个方面而且有点不知所措......我试图在包含API的文件夹中运行命令python3 setup.py bdist_wheel
并首先输入python 3环境(键入source activate python3
- 我正在使用anaconda。两者都返回错误setup.py cannot be found
。
任何人都知道应该运行两个命令才能正确安装模块吗?
答案 0 :(得分:1)
您应该为模块编写设置脚本
看here
答案 1 :(得分:0)
您可以按照以下步骤操作:
cd C:\TWS API\source\pythonclient
python setup.py bdist_wheel
cd C:\Python36\Scripts
python -m pip install --upgrade "C:\TWS API\source\pythonclient\dist\ibapi-9.73.2-py3-none-any.whl"
注意:将python和API版本更改为您正在使用的版本。