Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Following Installation (Pip Install Clearml), I Am Getting This: Collecting Clearml Warning: Retrying (Retry(Total=4, Connect=None, Read=None, Redirect=None, Status=None)) After Connection Broken By 'Readtimeouterror("Httpsconnectionpool(Host='

following installation (pip install clearml), i am getting this:

Collecting clearml
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host=' http://pypi.org ', port=443): Read timed out. (read timeout=15)")': /simple/clearml/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host=' http://pypi.org ', port=443): Read timed out. (read timeout=15)")': /simple/clearml/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host=' http://pypi.org ', port=443): Read timed out. (read timeout=15)")': /simple/clearml/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host=' http://pypi.org ', port=443): Read timed out. (read timeout=15)")': /simple/clearml/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host=' http://pypi.org ', port=443): Read timed out. (read timeout=15)")': /simple/clearml/
ERROR: Could not find a version that satisfies the requirement clearml (from versions: none)
ERROR: No matching distribution found for clearml

  
  
Posted 3 years ago
Votes Newest

Answers 13


thanks,
checking..

  
  
Posted 3 years ago

pip install clearml works for me now, if you like to try…

  
  
Posted 3 years ago

It seems like there were some pypi issues indeed, these last errors were not related to clearml at all, but to independent python packages

  
  
Posted 3 years ago

is it an issue with the dependencies?

  
  
Posted 3 years ago

i am installing each dependency separately using
pip install git+ <package>

  
  
Posted 3 years ago

trying to solve with:
pip install git+ https://github.com/allegroai/furl.git

  
  
Posted 3 years ago

checking

  
  
Posted 3 years ago

Hi NuttyOctopus69 ,

I’m getting the same, suspect its some pypi server issues (from https://status.python.org/ ).
You can install it the latest version from GitHub with
pip install git+

  
  
Posted 3 years ago

try pip install clearml now

  
  
Posted 3 years ago

got the same error

  
  
Posted 3 years ago

seems like an issue with pypi, when trying to install a package with pypi server, it fails

  
  
Posted 3 years ago

Collecting furl>=2.0.0 (from clearml==0.17.4)
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host=' http://pypi.org ', port=443): Read timed out. (read timeout=15)")': /simple/furl/
WARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host=' http://pypi.org ', port=443): Read timed out. (read timeout=15)")': /simple/furl/
WARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host=' http://pypi.org ', port=443): Read timed out. (read timeout=15)")': /simple/furl/
WARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host=' http://pypi.org ', port=443): Read timed out. (read timeout=15)")': /simple/furl/
WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host=' http://pypi.org ', port=443): Read timed out. (read timeout=15)")': /simple/furl/
ERROR: Could not find a version that satisfies the requirement furl>=2.0.0 (from clearml==0.17.4) (from versions: none)
ERROR: No matching distribution found for furl>=2.0.0 (from clearml==0.17.4)

  
  
Posted 3 years ago

for furl try with pip install git+ https://github.com/gruns/furl

  
  
Posted 3 years ago