Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 12 years ago.
Fabric 在 Windows 上安装得很好,但您需要:
我将其安装在 virtualenv 中,如下所示:
virtualenv fabenv fabenv\Scripts\activate.bat pip install fabric
另一个提示:当您启动并运行它时,您可以 使用 pageant 加载您的 ssh 密钥并避免使用基于密码的身份验证
fabric installs just fine on Windows, but you will need to either:
I install it in a virtualenv like so:
Another Tip: When you have it up and running you can use pageant to load your ssh keys and avoiding using password-based authentication
使用 Cygwin 的解决方案:
python --version
sh setuptools-*.egg
easy_install pip
pip install Fabric
c:\cygwin_path\bin\ash.exe
/bin/rebaseall
Solution using Cygwin:
pip install fabric
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
Fabric 在 Windows 上安装得很好,但您需要:
我将其安装在 virtualenv 中,如下所示:
另一个提示:当您启动并运行它时,您可以 使用 pageant 加载您的 ssh 密钥并避免使用基于密码的身份验证
fabric installs just fine on Windows, but you will need to either:
I install it in a virtualenv like so:
Another Tip: When you have it up and running you can use pageant to load your ssh keys and avoiding using password-based authentication
使用 Cygwin 的解决方案:
python --version
以验证您的 Pythonsh setuptools-*.egg
安装下载的 setuptools 包easy_install pip
(我只是喜欢 Pip,我认为你可以使用下一步easy_install 也是如此)pip install Fabric
c:\cygwin_path\bin\ash.exe
/bin/rebaseall
pip install Fabric
,现在应该会成功:)Solution using Cygwin:
python --version
to verify your Python versionsh setuptools-*.egg
to install the downloaded setuptools packageeasy_install pip
(I just like Pip, I think you could the next step with easy_install as well)pip install fabric
c:\cygwin_path\bin\ash.exe
/bin/rebaseall
pip install fabric
, it should succeed now :)