每次进入终端时,我可以输入'jp'而不是'jupyter notebook'吗?我尝试了别名〜/ .bash_profile,但它不起作用
alias jp = 'jupyter notebook'
它说
-bash: ‘jupyter: command not found
答案 0 :(得分:1)
有不同的方法可以做到这一点:
1st~ / .bashrc
使用您选择的editor
打开〜/ .bashrc ,并在Alias
之后添加一些行:
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
alias jp='jupyter notebook'
保存并关闭它。
2nd~ / .bash_aliases
更明确一点是touch
新文件〜/ .bash_aliases ,并使用您的editor
选项打开它。添加几行,保存并关闭它。
alias jp='jupyter notebook'
alias la='ls -al'
alias ..='cd ..'
要重新加载 bash_aliases ,您需要在 .bashrc
中添加这些行if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
最后你需要重新加载源:
第一种方式:$ source ~/.bashrc
第二种方式,创建新文件后:
$ source ~/.bash_aliases