The "--http-basic" option does not exist.
时间: 2024-03-29 13:40:59 浏览: 141
对不起,我的回答可能已经过时了。在较新版本的 Poetry 中,`--http-basic` 参数已经被删除,因此您需要使用不同的方式来配置 `.netrc` 认证信息。
您可以在 `.netrc` 文件中手动添加认证信息,例如:
```
machine example.com
login myusername
password mypassword
```
其中,`example.com` 是您的换源网站地址,`myusername` 和 `mypassword` 分别是您的用户名和密码。请确保 `.netrc` 文件的权限设置正确,避免信息泄露。
然后,您可以使用以下命令进行换源:
```bash
poetry config repositories.clear
poetry config repositories.myrepo https://example.com/simple/
```
其中,`myrepo` 是您自定义的名称,`https://example.com/simple/` 是您换源网站的地址。Poetry 会自动读取 `.netrc` 文件中的认证信息进行认证。
阅读全文