在.bash_profile中源.profile来在Cygwin中安装RVM?

时间:2014-11-30 08:43:42

标签: linux bash unix cygwin rvm

我正在使用cygwin在Windows机器上安装RVM。我使用命令curl -L https://get.rvm.io | bash -s stable来获取RVM。但有一个问题。请参阅下面输出中的“警告”部分,请帮我修复它。

# mspc,
#
#   Thank you for using RVM!
#   We sincerely hope that RVM helps to make your life easier and more enjoyable!!!
#
# ~Wayne, Michal & team.

In case of problems: http://rvm.io/help and https://twitter.com/rvm_io

  * WARNING: You have '~/.profile' file, you might want to load it,
    to do that add the following line to '/home/mspc/.bash_profile':

      source ~/.profile

我在哪里放这行代码?

.bash_profile文件的源代码 -

# base-files version 4.2-3

# ~/.bash_profile: executed by bash(1) for login shells.

# The latest version as installed by the Cygwin Setup program can
# always be found at /etc/defaults/etc/skel/.bash_profile

# Modifying /etc/skel/.bash_profile directly will prevent
# setup from updating it.

# The copy in your home directory (~/.bash_profile) is yours, please
# feel free to customise it to create a shell
# environment to your liking.  If you feel a change
# would be benifitial to all, please feel free to send
# a patch to the cygwin mailing list.

# User dependent .bash_profile file

# source the users bashrc if it exists
if [ -f "${HOME}/.bashrc" ] ; then
  source "${HOME}/.bashrc"
fi

# Set PATH so it includes user's private bin if it exists
# if [ -d "${HOME}/bin" ] ; then
#   PATH="${HOME}/bin:${PATH}"
# fi

# Set MANPATH so it includes users' private man if it exists
# if [ -d "${HOME}/man" ]; then
#   MANPATH="${HOME}/man:${MANPATH}"
# fi

# Set INFOPATH so it includes users' private info if it exists
# if [ -d "${HOME}/info" ]; then
#   INFOPATH="${HOME}/info:${INFOPATH}"
# fi

[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*

1 个答案:

答案 0 :(得分:0)

您只需在该文件中的任何位置添加该行即可。唯一的问题是,是否需要在加载rvm之前或之后加载,我无法回答。

是否需要这样做取决于该文件中是否存在您实际需要的内容,因为很可能不存在。