I have a problem cloning a project from GitHub. The error occurs when I try to install the requirements.txt file:
ERROR: pyzmq has an invalid wheel, multiple .dist-info directories found: libsodium-1.0.17.dist-info, pyzmq-18.1.0.dist-info
I tried the below options but nothing worked. Any idea how can I solve the problem?
pip install --no-cache-dir -r requirements.txt
pip install --no-binary=:all: pyzmq==18.1.0
pip install wheel
I also opened the requirements.txt file and removed this package, but other packages didn't install correctly!