为 Windows 配置 sqlalchemy
有没有关于如何为 Windows 设置 sqlalchemy 的教程?我访问了 www.sqlalchemy.org,他们没有关于 Windows 设置的明确说明。当我打开压缩包时,我在其他文件中看到 allocate_setup、ez_setup 和 setup.py,但没有看到安装 sqlalchemy。
Is there any tutorials about how to set-up sqlalchemy for windows? I went to www.sqlalchemy.org and they don't have clear instructions about set-up for windows. When I opened the zipped package, I see distribute_setup, ez_setup and setup.py among other files but it doesn't see to install sqlalchemy.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
解压后,打开命令提示符并 cd 进入解压目录,然后运行:
这是安装向导的链接:
Sql Alchemy 安装指南
After unzipping open a command prompt and cd into the unzipped directory then run:
Here is a link to the installation guilde:
Sql Alchemy Instalation Guide
命令
pip install sqlalchemy
将为您下载必要的文件并运行setup.py install
。The Command
pip install sqlalchemy
will download the necessary files and runsetup.py install
for you.