port selfupdate: “macPorts sources: command execution failed”

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-02 16:04:18
Eric K.

I had this same problem recently, and I forgot to run the command under root. If anyone else is having the problem, be sure to run command as so:

sudo port selfupdate

I was behind a firewall. Tried on a different network and it worked.

There is no /opt/local/bin/macports. The executable you need is /opt/local/bin/port. (Port files are in /opt/local/var/..., which is correct.)

Based on the command execution failed:

  • you might have forgotten to run as root.
  • port forks the following programs: rsync, tclsh, openssl, tar, chmod, chown. Are these executable and in the PATH? (Is /opt/local/bin in your PATH as well?)

If that doesn't help, run port with -dt to get all sorts of debug info. That might help with finding the problem. Append the interesting parts to your question, maybe.

beautifulcode

I faced the same issue.But I used to this method in the after.

Go to: $prefix/etc/macports/sources.conf (my path is like this):

/opt/local/etc/macports/sources.conf 

comment out the rsync entry, and add a new entry as follows:

#rsync://rsync.macports.org/release/tarballs/ports.tar [default]
https://distfiles.macports.org/ports.tar.gz [default]

After that you can run:

sudo port -d sync

It's also explained on MacPorts.com.

Miles

Update for Mavericks: to ensure the XCode command line tools are installed, open a terminal and run xcode-select –-install, then follow the instructions in the resulting pop-up window:

  • accept license

Of course, this is in addition to the other tips such as making sure to run sudo port selfupdate.

If anybody else is having this issue and they've recently updated XCode, the root of my problem was that Command Line Tools had been omitted from the latest build.

Opening XCode and installing Command Line Tools via the XCode preference panel fixed this error being thrown by MacPorts.

If your company block the access via rsync you can use the http tarball. Explained here

Hope this helps.

EDIT: Now prefer to use homebrew

Koza

I faced the same issue. The main problem was my network. Because the NETWORK Port was blocked for;

rsync://rsync.macports.org/release/tarballs/ports.tar

Try to use use another network.

I too had the same error. It is because the network connection is rejected. If you are using University/Company WiFi or public connection, firewall would be refusing the connection.

As you can see from the output of -dt "rsync: failed to connect to rsync.macports.org: Connection refused (61)"

There are workarounds available which are provided on the macports site:

1) Using svn.

2) If svn fails too, you can try using Daily tarball.

You can test the changes by running "sudo port -d sync"

Note: If the https fails, you can replace it with http. But doing so is not recommended, as you will be fetching from insecure connection.

rain cheng

for someone who's problem still exists, maybe you've forgot agree the Xcode license:

# sudo xcodebuild license

remember to look through and type 'agree' in the end.

In my case, the problem was internal to Macports! I updated rsync (the one delivered by Apple is old) with Macports and then Macports failed to use it (/opt/local/bin/rsync) but asked instead to use /usr/bin/rsync which does not exist (or has been erased to force using Macports rsync ?). I created a soft link between the two and now it works again.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!