英文:
'pip install causallift' does not install
问题
我想安装Python包causallift,但安装过程卡在'安装构建依赖...'。当我使用以下命令安装时:
pip3 install causallift
安装过程停在'安装构建依赖'处数小时。
英文:
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.
答案1
得分: 1
你可以尝试另外两个选项:
- 运行:
pip3 install git+https://github.com/Minyus/causallift.git
- 克隆GitHub存储库,进入下载的存储库,并运行:
python setup.py install
英文:
you can try 2 more options:
- run:
pip3 install git+https://github.com/Minyus/causallift.git
- clone the GitHub repository, cd into the downloaded repository, and run:
python setup.py install
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论