gpt4 book ai didi

python-3.x - Python3 正确安装 PyCurl

转载 作者:行者123 更新时间:2023-12-04 09:14:04 25 4
gpt4 key购买 nike

我正在尝试安装 pycurl在我的 ubuntu 16.04 LTS ,该模块看起来已安装,但当我尝试从 python 导入它时,它给了我“没有名为 pycurl 的模块”。
我的python3版本是3.7.8pip3 freeze |grep pycurl告诉我安装了 7.43 版 pycurl==7.43.0我已经成功运行:

apt-get update
apt-get install python3-pycurl
python3 -m pip install pycurl给我 :
Defaulting to user installation because normal site-packages is not writeable
Requirement already satisfied: pycurl in /usr/lib/python3/dist-packages (7.43.0)
python3 -m easy_install pycurl返回:
WARNING: The easy_install command is deprecated and will be removed in a future version.
Searching for pycurl
Best match: pycurl 7.43.0
Adding pycurl 7.43.0 to easy-install.pth file

Using /usr/lib/python3/dist-packages
Processing dependencies for pycurl
Finished processing dependencies for pycurl
毕竟,当我尝试导入模块时,我得到了这个:
>>> import pycurl
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'pycurl'
任何的想法 ?
#更新
当我尝试 pip3 -v install pycurl --upgrade我收到这个错误
File "/home/user/.local/lib/python3.7/site- 
packages/pip/_internal/utils/subprocess.py", line 242, in
call_subprocess
raise InstallationError(exc_msg)
pip._internal.exceptions.InstallationError: Command errored out with
exit status 1: /usr/bin/python3 -u -c 'import sys, setuptools,
tokenize; sys.argv[0] = '"'"'/tmp/pip-install-
jrmswlpf/pycurl/setup.py'"'"'; __file__='"'"'/tmp/pip-install-
jrmswlpf/pycurl/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)
(__file__);code=f.read().replace('"'"'\r\n'"'"',
'"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))'
install --record /tmp/pip-record-0mjigz74/install-record.txt --single-
version-externally-managed --user --prefix= --compile --install-
headers
/home/user/.local/include/python3.7m/pycurl Check the logs for full
command output.
Removed build tracker: '/tmp/pip-req-tracker-w67dg62p'
#更新 2:
我运行这些命令: sudo apt-get purge python3-pycurl然后 pip3 freeze|grep pycurl什么都不返回 => pycurl 已卸载
然后,我运行 pip3 install pycurl
pip3 install pycurl
Defaulting to user installation because normal site-packages is not
writeable
Collecting pycurl
Using cached pycurl-7.43.0.5.tar.gz (216 kB)
Building wheels for collected packages: pycurl
Building wheel for pycurl (setup.py) ... error
ERROR: Command errored out with exit status 1:
command: /usr/bin/python3 -u -c 'import sys, setuptools, tokenize;
sys.argv[0] = '"'"'/tmp/pip-install-umytzbub/pycurl/setup.py'"'"';
__file__='"'"'/tmp/pip-install-
umytzbub/pycurl/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-31uhzig0
cwd: /tmp/pip-install-umytzbub/pycurl/
Complete output (18 lines):
Using curl-config (libcurl 7.47.0)
Using SSL library: GnuTLS
running bdist_wheel
running build
running build_py
creating build
creating build/lib.linux-x86_64-3.7
creating build/lib.linux-x86_64-3.7/curl
copying python/curl/__init__.py -> build/lib.linux-x86_64-3.7/curl
running build_ext
building 'pycurl' extension
creating build/temp.linux-x86_64-3.7
creating build/temp.linux-x86_64-3.7/src
x86_64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -
DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -
Werror=format-security -g -fstack-protector-strong -Wformat -
Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -
DPYCURL_VERSION="7.43.0.5" -DHAVE_CURL_SSL=1 -DHAVE_CURL_GNUTLS=1 -
DHAVE_CURL_SSL=1 -I/usr/include/python3.7m -c src/docstrings.c -o
build/temp.linux-x86_64-3.7/src/docstrings.o
In file included from src/docstrings.c:4:0:
src/pycurl.h:5:20: fatal error: Python.h: No such file or directory
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
----------------------------------------
ERROR: Failed building wheel for pycurl
Running setup.py clean for pycurl
Failed to build pycurl
DEPRECATION: Could not build wheels for pycurl which do not use PEP
517. pip will fall back to legacy 'setup.py install' for these. pip
21.0 will remove support for this functionality. A possible
replacement is to fix the wheel build issue reported above. You can
find discussion regarding this at
https://github.com/pypa/pip/issues/8368.
Installing collected packages: pycurl
Running setup.py install for pycurl ... error
ERROR: Command errored out with exit status 1:
command: /usr/bin/python3 -u -c 'import sys, setuptools, tokenize;
sys.argv[0] = '"'"'/tmp/pip-install-umytzbub/pycurl/setup.py'"'"';
__file__='"'"'/tmp/pip-install-
umytzbub/pycurl/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"',
open)(__file__);code=f.read().replace('"'"'\r\n'"'"',
'"'"'\n'"'"');f.close();exec(compile(code, __file__,
'"'"'exec'"'"'))' install --record /tmp/pip-record-62fg7a92/install-
record.txt --single-version-externally-managed --user --prefix= --
compile --install-headers
/home/user/.local/include/python3.7m/pycurl
cwd: /tmp/pip-install-umytzbub/pycurl/
Complete output (18 lines):
Using curl-config (libcurl 7.47.0)
Using SSL library: GnuTLS
running install
running build
running build_py
creating build
creating build/lib.linux-x86_64-3.7
creating build/lib.linux-x86_64-3.7/curl
copying python/curl/__init__.py -> build/lib.linux-x86_64-3.7/curl
running build_ext
building 'pycurl' extension
creating build/temp.linux-x86_64-3.7
creating build/temp.linux-x86_64-3.7/src
x86_64-linux-gnu-gcc -pthread -Wno-unused-result -Wsign-compare -
DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -
Werror=format-security -g -fstack-protector-strong -Wformat -
Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -
DPYCURL_VERSION="7.43.0.5" -DHAVE_CURL_SSL=1 -DHAVE_CURL_GNUTLS=1 -
DHAVE_CURL_SSL=1 -I/usr/include/python3.7m -c src/docstrings.c -o
build/temp.linux-x86_64-3.7/src/docstrings.o
In file included from src/docstrings.c:4:0:
src/pycurl.h:5:20: fatal error: Python.h: No such file or directory
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
----------------------------------------
ERROR: Command errored out with exit status 1: /usr/bin/python3 -u -
c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-
install-umytzbub/pycurl/setup.py'"'"'; __file__='"'"'/tmp/pip-
install-umytzbub/pycurl/setup.py'"'"';f=getattr(tokenize,
'"'"'open'"'"', open)
(__file__);code=f.read().replace('"'"'\r\n'"'"',
'"'"'\n'"'"');f.close();exec(compile(code, __file__,
'"'"'exec'"'"'))' install --record /tmp/pip-record-62fg7a92/install-
record.txt --single-version-externally-managed --user --prefix= --
compile --install-headers
/home/user/.local/include/python3.7m/pycurl Check the logs for full
command output.

最佳答案

我终于通过安装 libpython3.7-dev 修复了这个错误

sudo apt-get install libpython3.7-dev

关于python-3.x - Python3 正确安装 PyCurl,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63294808/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com