curl (3) URL using bad/illegal format or missing URL

穿精又带淫゛_ 提交于 2019-12-22 10:47:12

问题


I've tried to install Minikube via Linux (Ubuntu 18.04) and have installed curl following these steps:

./configure --nghttp2 --prefix=/usr/local --with-ssl 
make 
sudo make install

My curl version is 7.63.0.

According to the Platform 9 guide, I wrote the following instruction:

curl -Lo minikube \ 
https://storage.googleapis.com/minikube/releases/v0.18.0/minikube-darwin- 
amd64 && chmod +x minikube && mv minikube /usr/local/bin/

This is the system's result:

curl (3) URL using bad/illegal format or missing URL

How can I fix this?


回答1:


Try this:

curl -L -o minikube "https://storage.googleapis.com/minikube/releases/v0.18.0/minikube-darwin-amd64" && chmod +x minikube && sudo mv ./minikube /usr/local/bin/

See if it's working.



来源:https://stackoverflow.com/questions/54094362/curl-3-url-using-bad-illegal-format-or-missing-url

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