繁体   English   中英

Python3模块安装

[英]Python3 module Installation

我正在尝试为python安装模块aiohttp,所以我可以设置一个系统来使用uvloop下载文件。 但是,当我进入将aiohttp解压缩到的文件夹并执行以下命令时,遇到了一些困难:

sudo python3 setup.py install
Traceback (most recent call last):
  File "setup.py", line 5, in <module>
    from setuptools import setup, Extension
ImportError: No module named 'setuptools'

我环顾四周,发现有些人遇到了这个问题,但是通过获取python-setuptools或python3-setuptools软件包已解决了该问题。 所以我尝试这样做,但这是我得到的输出:

$ sudo apt-get install python3-setuptools
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python3-setuptools is already the newest version.
python3-setuptools set to manually installed.
0 upgraded, 0 newly installed, 0 to remove and 5 not upgraded.

$ sudo apt-get install python-setuptools
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python-setuptools is already the newest version.
python-setuptools set to manually installed.
0 upgraded, 0 newly installed, 0 to remove and 5 not upgraded.

这使我相信python-setuptools已经安装! 我不确定从这里去哪里。 为了清楚起见,我确实尝试过

sudo python setup.py install

但是我收到一个错误,因为安装aiohttp需要Python 3.4.1+:

sudo python setup.py install
Traceback (most recent call last):
  File "setup.py", line 61, in <module>
    raise RuntimeError("aiohttp requires Python 3.4.1+")
RuntimeError: aiohttp requires Python 3.4.1+

我在HP Elitebook 8440p上运行Linux Mint 17.2 Qiana。 关于我应该做什么的建议? 提前致谢!

首先安装python3

brew install python3 && cp /usr/local/bin/python3 /usr/local/bin/python

然后使用pip3安装aiohttp

pip3 install aiohttp

sudo dnf install python-devel-2.7.12-6.fc24.x86_64解决了我的问题

对我来说,在Mac笔记本电脑上安装uvloop可以正常工作:

  pip install uvloop

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM