Sabzaliev Shukur
Sabzaliev Shukur

Reputation: 381

How to loosen up required versions when installing a package

There is a python anonymization package called cape-privace. When I try to pip install it, it gives and error due to conflicting packages, For example it requires pandas==1.0.3, but it successfully work with pandas latest version.

How can I access cape-privacy setup settings and what should I change so it installs successfully

As for now, I keep getting this error. enter image description here

Upvotes: -2

Views: 244

Answers (1)

bio-boris
bio-boris

Reputation: 126

I see you have posted on that project's github repo and the maintainers haven't responded. The installation is indeed broken, and its possible it only works for specific operating systems or specific versions of python. I would try running it in docker and try to figure out why it works in their setup. Otherwise you will have to figure out how to figure out how to fix the installation of cape-privacy by editing the Makefile, requirements.txt and supporting scripts.

docker run -it capeprivacy/cape-python:0.3.0 bash

Upvotes: 1

Related Questions