首先创建轮子安装Python模块



我只是下载文件以在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

任何人都知道应该运行两个命令以正确安装模块?

您应该为模块编写设置脚本

在这里看

您可以按照以下步骤操作:

  1. cd C:TWS APIsourcepythonclient
  2. python setup.py bdist_wheel
  3. cd C:Python36Scripts
  4. python -m pip install --upgrade "C:TWS APIsourcepythonclientdistibapi-9.73.2-py3-none-any.whl"

注意:将Python和API版本更改为您正在使用的版本。

相关内容

  • 没有找到相关文章

最新更新