制作&& sudo make install 不起作用
我在 OS X 10.6.6 上尝试升级 git
和 curl
。
$ cd ~/Downloads/git-1.7.4.1
$ make && sudo make install
...
$ git --version
git version 1.7.3.2
它滚动浏览并且似乎工作正常,但是当我打印 git
的版本时(这也发生在 curl
上),我仍然得到旧版本。我需要做什么来解决这个问题?
我能够通过 .dmg 文件安装最新版本的 git,但curl 没有。
有什么建议吗?
I'm on OS X 10.6.6 trying to upgrade git
and curl
.
$ cd ~/Downloads/git-1.7.4.1
$ make && sudo make install
...
$ git --version
git version 1.7.3.2
It scrolls through and seems to work ok, but when I print the version of git
(this happens with curl
also) I still get the older version. What do I need to do to fix this?
I was able to install the newest version of git through the .dmg file, but curl doesn't have one.
Any tips?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看安装的输出。它把可执行文件放在哪里?如果您的
$PATH
中有两个版本的 git,那么它可能找到了错误的版本。并且您确定没有发生任何错误?Look at the output of the install. Where does it place the executable? If you have two versions of git in your
$PATH
, then it might be that it found the wrong one. And you are certain that no errors occurred?