Protocole "https" non pris en charge ou désactivé dans libcurl
Voici mon contenu Podfile:
platform :ios, ‘8.0’
use_frameworks!
target 'Project-Name' do
pod 'Firebase/Core'
pod 'Firebase/Messaging'
end
Même erreur se produit lors de l'ajout pod 'GoogleMaps'
dans Podfile.
Erreur lors de l'exécution pod install --verbose command
sur Terminal:
[!] Error installing Firebase
[!] /usr/local/bin/curl -f -L -o /var/folders/1t/102_4r0x1_3_5dlq8zdbm27r0000gn/T/d20160902-4388-1omozrn/file.tgz https://www.gstatic.com/cpdc/cc5f7aac07ccdd0a/Firebase-3.5.0.tar.gz --create-dirs --netrc-optional
curl: (1) Protocol "https" not supported or disabled in libcurl
Edit 1:comment activer curl SSL sur Mac OS X?
./configure --with-darwinssl
ne fonctionne pas.
-bash:./configure: Aucun fichier ou répertoire
Modifier 2:comment activer le support https dans libcurl?
Cette commande brew install curl --with-libssh2
est exécuté sur terminal, mais ne sait pas quoi faire ensuite:
UB:lib aspl$ brew install curl --with-libssh2 --verbose
==> Auto-updated Homebrew!
Updated 1 tap (homebrew/core).
No changes to formulae.
Warning: curl-7.50.1 already installed
UB:lib aspl$ curl --version
curl 7.48.0 (x86_64-apple-darwin14.5.0) libcurl/7.48.0 zlib/1.2.5
Protocols: dict file ftp gopher http imap ldap ldaps pop3 rtsp smtp telnet tftp
Features: IPv6 Largefile libz UnixSockets
Cette commande ne fonctionne pas:
$ otool -L /usr/local/git/libexec/git-core/git-http-push | grep curl
/usr/lib/libcurl.4.dylib
/Applications/Xcode-bêta.app/Contents/Développeur/Toolchains/XcodeDefault.xctoolchain/usr/bin/objdump: '/usr/local/bin/git/libexec/git-core / git-http-push': pas un répertoire. erreur fatale: / Applications / Xcode-beta.app/Contents/Développeur/Toolchains/XcodeDefault.xctoolchain/usr/bin / otool: échec de la commande interne objdump Fichier binaire / usr/lib / libcurl.4.dylib correspond à
Edit:3 commande du Terminal which git
spectacles /usr/local/bin/git
Edit: 4activer le Support HTTPS dans Curl installé via MacPorts sur OSX
Exécution sudo port install curl +ssl
ou sudo port uninstall curl
dit:
sudo: port: commande introuvable
Et d'installer des ports(MacPorts) lien ci-dessous est utilisée, ce qui est un HTTPS lien:
$ curl -O https://distfiles.macports.org/MacPorts/MacPorts-2.3.4.tar.bz2
il y a aussi une option de téléchargement de macport folder?
Mais que faire avec téléchargésMacPorts-2.3.4
dossier?
EDIT 5: Forcer la désinstallation de l'enroulement et l'installation de nouveau ne fonctionne pas :(
$ brew uninstall curl
Uninstalling /usr/local/Cellar/curl/7.50.1... (366 files, 2.6M)
curl 7.46.0 is still installed.
Remove them all with `brew uninstall --force curl`.
$ brew uninstall --force curl
Uninstalling curl... (360 files, 2.6M)
$ brew install curl --with-libssh2 --verbose
Error: curl 7.50.2 did not build
Logs:
/Users/aspl/Library/Logs/Homebrew/curl/01.configure
/Users/aspl/Library/Logs/Homebrew/curl/01.configure.cc
/Users/aspl/Library/Logs/Homebrew/curl/02.make
/Users/aspl/Library/Logs/Homebrew/curl/config.log
These open issues may also help:
curl: migrate to openssl@1.1 https://github.com/Homebrew/homebrew-core/pull/4591
2 réponses
Après j'ai installé macOS High Sierra
, j'ai rencontré le même problème lors de l'installation de firebase via pod
.
Le truc, c'était d'enlever la boucle et de l'installer à nouveau:
curl --version // you will see the https protocol is missing, and the version would be 7.56.1 if you did try to update it before
brew remove curl
brew install curl --with-darwinssl // install with darwin instead of openssl
echo 'export PATH="/usr/local/opt/curl/bin:$PATH"' >> ~/.zshrc // run this
après que vous devriez fermer et quitter tous les terminaux ou ITER, puis l'ouvrir à nouveau, exécuter brew doctor
puis exécutez curl --version
vous devriez voir https
dans la liste de protocoles
Alors vous devriez être bon d'aller :)