我尝试ccxt.pro
通过pipenv
. 我通常使用 pythonvenv
模块来创建虚拟环境,但我也尝试使用 pipenv。
在ccxt.pro
文档中,应通过 pip3 通过 https 或 ssh 安装包。通过 github 用户和密码,我可以安装它。
当我试图安装这个库时pipenv
,我收到Installation Failed
错误:
pipenv install git+https://github.com/kroitor/ccxt.pro.git#subdirectory=python
Installing git+https://github.com/kroitor/ccxt.pro.git#subdirectory=python…
WARNING: pipenv requires an #egg fragment for version controlled dependencies. Please
install remote dependency in the form git+https://github.com/kroitor/ccxt.pro.git#egg=<package-name>.
✘ Installation Failed
我从setup.py安装所有依赖项,但问题仍然存在。试图应用这个,但它被卡住了Installing...
。
问题:
- 如何通过 pipenv 安装 ccxt.pro?
- 为什么我不能像使用
pip install
命令一样安装它?