Inge
Inge

Reputation: 135

'pip install causallift' does not install

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

Answers (1)

kederrac
kederrac

Reputation: 17322

you can try 2 more options:

  1. run: pip3 install git+https://github.com/Minyus/causallift.git
  2. clone the GitHub repository, cd into the downloaded repository, and run: python setup.py install

Upvotes: 1

Related Questions