Ollama 在我的 Ubuntu 机器上运行良好,并且在那里本地工作。我对 Ubuntu 还很陌生。在 Windows 11 中使用 Python,我尝试:client = Client(host='http://127.0.1.1:11434')response = client.chat(
Ollama 在我的 Ubuntu 机器上运行良好,并且在那里本地工作。我对 Ubuntu 还很陌生。在 Windows 11 中的 Python 中,我尝试:
client = Client(host='http://127.0.1.1:11434')
response = client.chat(model='phi3:3.8b-mini-128k-instruct-q4_0', messages=[
{
'role': 'user',
'content': 'Why is the sky blue?',
},
])
我在 Windows/Python 端收到此错误:
ConnectError: [WinError 10061] No connection could be made because the target machine actively refused it
在 Ubuntu 上,我看到了这样的情况:--
Connection Failed: Activation of Network Connection Failed
我想通过 LAN 本地连接两台机器,不连接互联网,因此我有一条以太网电缆从 Linux 机器连接到 Windows 机器上的 USB/以太网适配器(Linux 机器不在互联网上,而且我不希望它连接互联网——Windows 机器通过不同的以太网端口连接到互联网。)
我感觉我在这里做了一些根本性的错误。我需要在 Ubuntu 或 Windows 上进行其他配置才能使此连接正常工作吗?