Reputation: 135
I want to install the Python package causallift, but the installation lingers at 'Installing build dependencies...'.
When I install with:
pip3 install causallift
The installation stays at 'Installing build dependencies' for hours.
Upvotes: 1
Views: 75
Reputation: 17322
you can try 2 more options:
pip3 install git+https://github.com/Minyus/causallift.git
python setup.py install
Upvotes: 1