1

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 を実行しています。私が何をすべきかについて何か提案はありますか?前もって感謝します!

4

3 に答える 3

0

sudo dnf install python-devel-2.7.12-6.fc24.x86_64私の問題を解決しました

于 2016-11-15T19:48:31.520 に答える