-
Notifications
You must be signed in to change notification settings - Fork 167
Install lftp on OSX yosemite
Alessandro Fazzi edited this page Feb 25, 2015
·
11 revisions
wordmove require lftp. (In order to work over FTP connections)
lftp have a lot of dependencies and is very hard install it in mac osX yosemite
In internet can find several ways to install, but many do not work in all osX installation.
I suggest this (tested and working)
- install Xcode from : https://developer.apple.com/xcode/downloads/
- go to terminal
- install homebrew :
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- apply homebrew doctor :
brew doctor
- install lftp :
brew install lftp
that's all folks!!!
P.S. : sometime lftp do Fatal error: Certificate verification: subjectAltName does not match
I suggest this :
- go to terminal
- create a lftp path :
mkdir ~/.lftp
- create a configuration file for lftp :
nano ~/.lftp/rc
- disable certificate verification writing :
set ssl:verify-certificate no
- save ( ^o e ^x )
- exit from terminal