thepycoder / promptimyzer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Duplicate clearml package in requirements.txt

Yosua1011 opened this issue · comments

Steps to reproduce

  1. Run pip install -r requirements.txt
  2. You will get this error
Collecting clearml==1.10.1
  Downloading clearml-1.10.1-py2.py3-none-any.whl (1.1 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.1/1.1 MB 1.1 MB/s eta 0:00:00
ERROR: Cannot install clearml==1.10.0 and clearml==1.10.1 because these package versions have conflicting dependencies.

The conflict is caused by:
    The user requested clearml==1.10.1
    The user requested clearml==1.10.0

To fix this you could try to:
1. loosen the range of package versions you've specified
2. remove package versions to allow pip attempt to solve the dependency conflict

ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts

Expected behavior

  1. Only single clearml package version listed in requirements.txt.
  2. Could install pip packages of requirements.txt successfully.