我正在尝试从ubuntu18中的github运行存储库。
python3 setup.py develop --user
我得到了错误
CMake Error at libmypaint-stamp/download-libmypaint.cmake:159 (message):
Each download failed!
error: downloading 'https://github.com/mypaint/libmypaint/releases/download/v1.3.0/libmypaint-1.3.0.tar.xz' failed
status_code: 1
status_string: "Unsupported protocol"
log:
--- LOG BEGIN ---
Protocol "https" not supported or disabled in libcurl
Closing connection -1
--- LOG END ---
我看过其他相关主题,但没有得到答案。
这是运行curl --version
的结果:
curl 7.65.3 (x86_64-pc-linux-gnu) libcurl/7.65.3 OpenSSL/1.1.1
Release-Date: 2019-07-19
Protocols: dict file ftp ftps gopher http https imap imaps pop3 pop3s rtsp smb smbs smtp smtps telnet tftp
Features: AsynchDNS HTTPS-proxy IPv6 Largefile NTLM NTLM_WB SSL TLS-SRP UnixSockets
有什么帮助吗? 问候
答案 0 :(得分:1)
我没有找到导致问题的原因。但是我手动下载了存储库,并编辑了CMakeList.txt以使用本地文件URL。
答案 1 :(得分:0)
在这种情况下,cmake制作时不会卷曲。我像这样重新安装我的cmake:
git clone -b v3.10.2 https://cmake.org/cmake.git cmake
cd cmake
./bootstrap --system-curl
make
sudo make install
当涉及到“找不到ZLIB”时,只需在http://www.zlib.net/fossils/中下载zlib,制作并安装zlib。然后重新安装cmake。