gpt4 book ai didi

python - python中的setuptools错误

转载 作者:太空宇宙 更新时间:2023-11-03 14:30:29 27 4
gpt4 key购买 nike

我是 python 的新手,我正在安装 python pakages 但我收到这个错误

Error:
Traceback (most recent call last):
File "setup.py", line 3 in <module>
from setuptools import setup, find_packages
ImportError: No module named setuptools

但是当我安装 setuptools 并运行它时,我得到了这个错误

Traceback (most recent call last):
File "C:/Python32/yyy.py", line 7, in <module>
execfile(convert_path('setuptools/command/__init__.py'), d)
NameError: name 'execfile' is not defined

我是 Windows 7 用户。如果有任何人对此有经验,请弄清楚 这是什么意思解压存档,进入 pyserial-x.y 目录并运行 ?意思是我必须从命令提示符安装它

我想在 python 中使用 twitter api。当我运行它的安装文件时它显示错误。我用记事本打开它并复制设置代码并将其粘贴到脚本中并用 yyy.py 保存并运行它现在它给我这样的错误

File "C:\Python26\twittersetup.py",
line 13, in <module>
long_description=open("./README", "r").read(),
IOError: [Errno 2] No such file or directory: './README'

python 3.2 中的这个错误

File "C:/Python32/t.py",
line 9, in <module>
setup(name='twitter',
NameError: name 'setup' is not defined

现在经过多次生存我得到了这个错误

Traceback (most recent call last):
File "C:\Users\Sheikh\Desktop\twitter-1.9.0 (1).tar\twitter-1.9.0\setup.py",
line 47,
in <module>""",File "C:\Python32\lib\distutils\core.py",
line 136, in setup
raise SystemExit(gen_usage(dist.script_name) + "\nerror: %s" % msg)
SystemExit: usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: setup.py --help [cmd1 cmd2 ...]
or: setup.py --help-commands
or: setup.py cmd --help
error: no commands supplied

最佳答案

setuptools 似乎不支持 python 3(至少根据 Python 包索引)。

尝试提供 setuptools api 并提供 python3 兼容性的 distribute:http://pypi.python.org/pypi/distribute

看起来 python-twitter 不支持 python3,所以你必须使用 Python 2.6。

2.6 错误信息非常清楚:

"C:\Python26\twittersetup.py", line 13, in <module> long_description=open("./README", "r").read(), IOError: [Errno 2] No such file or directory: './README') 

基本上,您正试图从包含 README 文件的目录以外的目录运行脚本。

我会重新开始,并确保您首先下载并解压缩 python-twitter 的完整源代码:http://pypi.python.org/packages/source/p/python-twitter/python-twitter-0.8.2.tar.gz

接下来,解压缩并解压缩源代码(7-Zip 可以很好地处理这个问题)。

然后打开 cmdcd 到解压后的目录(应该包括 README 文件和 setup.py 文件)。然后运行类似:

C:\Python2.6\python2.6.exe setup.py

关于python - python中的setuptools错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11816428/

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