0

I am trying to install a package using pip on my cluster which is behind my company's proxy server. My company has a full clone for all the conda packages. Any request to install any packages goes to my company's conda packages cloud from where we install the packages. So we cannot download any pip packages.

!pip3 install asammdf

This gives me :

Collecting asammdf
  Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7fe6d7d32b70>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /simple/asammdf/
  Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7fe6d7d32e48>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /simple/asammdf/
  Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7fe6d7d32d30>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /simple/asammdf/
  Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7fe6d7d32470>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /simple/asammdf/
  Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7fe6d7d32128>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /simple/asammdf/
  Could not find a version that satisfies the requirement asammdf (from versions: )
No matching distribution found for asammdf

I need to install this asammdf package on my cluster, is there any way to do this?

4

1 回答 1

0

Asammdf 在 conda forge 中可用。这不是由您的内部服务器克隆的吗?

于 2020-02-11T20:02:40.203 回答