如何在Mac上指定路径

时间:2014-03-31 15:43:44

标签: python macos python-2.7 path

我正在使用Python 2.7.2。我想打开并使用我在shell中创建的字典。我的问题是,当我尝试将这个字典导入我的shell时,它无法找到该文件,因为python只是查看我的文档'夹。

我的问题是,如何导航到正确的文件夹(我的文档'文件夹中只有一个文件夹。

我正在使用Macintosh。

3 个答案:

答案 0 :(得分:1)

您可以将脚本的自定义路径添加为:

import sys
sys.path.append('/Users/username/')

答案 1 :(得分:0)

另一种方法是在shell中将PYTHONPATH环境变量设置为/ User / username。既然您了解了shell,我希望您已经知道如何编辑shell资源脚本。您也可以将它添加到.profile文件中,即使您更改了碰巧使用的shell,它也应该可用。

答案 2 :(得分:0)

如果你不想" hardwire"系统路径,但想要使用相对文件夹,你可以得到工作目录的名称,并将你的子目录添加到...

subdirname = 'myfolder'
curdir = os.getcwd()
newdir = os.path.join(curdir,subdirname)
sys.path.append(newdir)