首先创建轮子安装python模块

时间:2017-04-23 18:12:50

标签: python setup.py

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

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

2 个答案:

答案 0 :(得分:1)

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

here

答案 1 :(得分:0)

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

  1. cd C:\TWS API\source\pythonclient
  2. python setup.py bdist_wheel
  3. cd C:\Python36\Scripts
  4. python -m pip install --upgrade "C:\TWS API\source\pythonclient\dist\ibapi-9.73.2-py3-none-any.whl"
  5. 注意:将python和API版本更改为您正在使用的版本。