我正在尝试使用easy_install
安装Python EGG,提供Subversion存储库的URL,其中托管源:
$ easy_install svn://user:secret@svn.example.com/repo/trunk/my-egg
Authentication realm: <svn://svn.example.com:3690> repo
Password for 'me':
问题是存储库受密码保护。如何向easy_install
提供所需的用户名/密码?
PS。到目前为止,我看到的唯一方法是预先运行svn info --username...
以便为当前用户缓存凭据。但这只是一种解决方法。