Python 如何在我的jupyter笔记本上安装一个只在pip上可用而不在conda上可用的软件包?

Python 如何在我的jupyter笔记本上安装一个只在pip上可用而不在conda上可用的软件包?,python,pip,jupyter-notebook,conda,asammdf,Python,Pip,Jupyter Notebook,Conda,Asammdf,我正在尝试在我的集群上安装一个使用pip的包,该集群位于我公司的代理服务器后面。我的公司有一个完整的克隆所有康达软件包。任何安装任何软件包的请求都会转到我公司的conda软件包云,我们从那里安装软件包。所以我们不能下载任何pip包 !pip3 install asammdf 这给了我: Collecting asammdf Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after

我正在尝试在我的集群上安装一个使用pip的包,该集群位于我公司的代理服务器后面。我的公司有一个完整的克隆所有康达软件包。任何安装任何软件包的请求都会转到我公司的conda软件包云,我们从那里安装软件包。所以我们不能下载任何pip包

!pip3 install asammdf
这给了我:

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
收集asammdf
“NewConnectionError(':无法建立新连接:[Errno-2]名称或服务未知',)”:/simple/asammdf/
“NewConnectionError(':无法建立新连接:[Errno-2]名称或服务未知',)”:/simple/asammdf/
“NewConnectionError(':无法建立新连接:[Errno-2]名称或服务未知',)”:/simple/asammdf/
“NewConnectionError(':无法建立新连接:[Errno-2]名称或服务未知',)”:/simple/asammdf/
“NewConnectionError(':无法建立新连接:[Errno-2]名称或服务未知',)”:/simple/asammdf/
找不到满足asammdf要求的版本(来自版本:)
未找到asammdf的匹配分发

我需要在我的集群上安装这个
asammdf
软件包,有什么办法吗?

asammdf在conda forge中提供。这不是由内部服务器克隆的吗

名称或服务未知
表示您的pip或网络配置不正确。您的命令很好,为什么不能使用
!conda install
,因为该软件包在中不可用conda@cricket_007我无法使用pip安装任何东西,但是conda工作正常,但是由于很少有特定于pip的软件包,您必须自己检查是否有要安装的软件包。你在什么样的网络上?您是否在需要某种代理设置的公司/学校或类似公司/学校?请阅读评论,我已经声明,最终我必须从conda forge下载它。但是对于其他特定于pip的软件包,如果要使pip正常工作,您需要为其提供代理:
pip安装--proxy=http://:@asammdf