I try to install ccxt.pro
via pipenv
. I usually use python venv
module to create virtual environment but I try to work with pipenv too.
In ccxt.pro
documentation, package should be installed via pip3 over https or ssh. Via github user and password I am able to install it.
When I tried to install this library over pipenv
, I receive Installation Failed
error:
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
I install all dependencies from setup.py but the problem persist. Triead to apply this but it get stucked on Installing...
.
Questions:
- How can I install ccxt.pro via pipenv?
- Why am I not able to install it the same way like with
pip install
command?