Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 ipython 中创建一个别名以“跳转”到一个目录。例如,我通常在我的主目录和临时目录中工作,如果我可以轻松地在这些目录之间切换,那就太棒了。在 bash 中,这是由行完成的
alias sd='cd /scratch/users/"
这是如何在 ipython 中完成的?具体来说,我使用的是 ipython 0.11 版。
我看了看$alias,但显然我做错了什么。
$alias
谢谢!
定义你自己的 IPython 魔法函数在这里解释。
您需要使用chdir()os模块来更改您的工作目录。
chdir()