Python工作目录搞乱了

发布于 2024-11-26 20:59:05 字数 520 浏览 1 评论 0原文

遇到这个问题后:

我检查了一些东西:

当进入 我有正确的目录

~/Projects/mysite/mysite

我的 virtualenv 和 cd 进入我的 django 目录,进入 python 时

os.getcwd() 返回 ~/Projects/MYSITE/MYSITE第一个 mysite virtualenv 是 django 项目的第二个

,这就是为什么 django 不再为我工作

这一切都发生在我的电脑昨晚崩溃之后,我正在运行 lion

无论我是否在我的 virtualenv 中,都会发生这种情况(

以任何方式 激活或停用)重置此行为

感谢您的帮助

After having this problem: look

I checked some things:

When going into my virtualenv and cd ing into my django directory, i have the right directory

~/Projects/mysite/mysite

when going into python: os.getcwd() returns ~/Projects/MYSITE/MYSITE

the first mysite is the virtualenv the second the django project

so thats why django doesn't work anymore for me

This all occurred after my computer crashed last night, i am running lion

this happens whether i am in my virtualenv or not(activated or deactivated

any way to reset this behavior

thanks for any help

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

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

发布评论

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

评论(1

苄①跕圉湢 2024-12-03 20:59:05

我有预感。 Mac OS X 在大小写方面的行为有点复杂。例如,使用 OS 10.6.6 上的默认设置,您可以创建一个目录 MINE,该目录将在目录列表中显示为大写,但可以使用小写和大写进行访问。例如:

:~/foo $ mkdir MINE
:~/foo $ ls
MINE
:~/foo $ cd mine
:~/foo/mine $ ls -al

我的猜测是,当您的计算机崩溃时,必须进行某种恢复,并且使用大写字母重新创建目录。尝试重命名它们。

:~/foo $ mv MINE mine2
:~/foo $ mv mine2 mine
:~/foo $ ls
mine

I have a hunch. Mac OS X's behavior with respect to case is a bit complicated. For example, using default settings on OS 10.6.6, you can create a directory MINE, which will show up as uppercase in directory listings, but will be accessible using both lower- and uppercase. So for example:

:~/foo $ mkdir MINE
:~/foo $ ls
MINE
:~/foo $ cd mine
:~/foo/mine $ ls -al

My guess is that when your computer crashed, some sort of recovery had to be done, and the directories were recreated using uppercase letters. Try renaming them.

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