如何使用 django 让 postgresSQL 在 Windows 7 计算机上工作?

发布于 2025-01-03 18:22:17 字数 200 浏览 0 评论 0原文

我目前正在阅读 django 书,他们的说明对我不起作用。人们正在谈论编辑他们的路径并需要在评论中提供完整路径,说实话我真的不知道他们在说什么。我让 django 正确安装,但我一生都无法弄清楚这一点。对人们评论的任何建议或解释将不胜感激。

I'm currently reading the django book and their instructions aren't working for me. People are talking about editing their paths and needing full paths in the comments and I really just have no idea what they are talking about to be honest. I got django to install correctly but I can't for the life of me figure this out. Any suggestions or explanations of peoples comment would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

差↓一点笑了 2025-01-10 18:22:17

在执行任何操作之前,请确保已将 C:\Python27\Scripts 添加到您的 PATH 中,这是大多数包安装其脚本的位置(例如 django-admin.js)。 py)。

C:\Python27 替换为系统中安装 Python 的位置

完成此操作后,打开一个新的命令提示符,以便系统将读取路径

C:\>python django-admin.py startproject myproject

应该可以正常工作。

接下来,安装 postgresql。最简单的方法是使用一键安装程序

最后,下载适用于 Windows 的 pyscopg 库。确保您选择与您的 Python 版本相对应的版本。

现在您可以继续在 postgresql 中创建数据库。使用 pgadmin 工具(称为 pgadmin III)。

  1. 展开左侧窗格中服务器组下的服务器树。
  2. 双击列出的服务器(应为 PostgreSQL 9.0 (localhost:5432))。这会将您连接到服务器。您需要使用在安装程序中设置的密码。
  3. 右键点击Login Roles,选择New Role..
  4. 填写Role name(这是用户的登录名)
  5. 输入两个密码。
  6. 单击“确定”。
  7. 右键单击Databases,然后选择New Database..
  8. 为其命名
  9. Owner 字段中,输入您在中输入的名称步骤 4 中的角色名称
  10. 单击“确定”

从这里开始,您可以按照教程中的说明进行操作。

Before you do anything, make sure that you have C:\Python27\Scripts added to your PATH, this is where most packages install their scripts (such as django-admin.py).

Replace C:\Python27 with wherever Python is installed in your system

Once you have done that, open a new command prompt so the system will read the PATH.

C:\>python django-admin.py startproject myproject

Should work without any problems.

Next, install postgresql. The easiest way is to use the one click installer.

Finally, download the pyscopg library for Windows. Make sure you pick the one that corresponds with your version of Python.

Now you can continue by creating a database in postgresql. Use the pgadmin tool (called pgadmin III).

  1. Expand the Servers tree under Server Groups on the left pane.
  2. Double click on the server listed (should be PostgreSQL 9.0 (localhost:5432)). This connects you to the server. You need to use the password you set up in the installer.
  3. Right click on Login Roles, and select New Role..
  4. Fill in the Role name (this is the user's login name)
  5. Enter two passwords.
  6. Click OK.
  7. Right click on Databases, and select New Database..
  8. Give it a name
  9. In the Owner field, enter the name you entered in Role name in step 4.
  10. Click OK

From here on, you can follow the instructions in the tutorial.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文