パッケージがPython3にアクセスしようとしません。

パッケージがPython3にアクセスしようとしません。

Google Cloud Platformを使用し、スクリプトを介して環境をインストールしようとしています。私は次のことをしました。

wget http://cs231n.github.io/assignments/2018/spring1718_assignment1.zip
unzip spring1718_assignment1.zip
cd assignment1
./setup_googlecloud.sh

残念ながらエラーで終わります。

ERROR: Package 'aiocoap' requires a different Python: 2.7.17 not in '>=3.3'

提案されたアップデートの代替案を試しました。UbuntuでPython3のデフォルトバージョンを変更する: これでコマンドはpython --version「Python 3.7.5」を正常に表示しますが、スクリプトを実行するとエラーが発生します。エイリアスの作成も機能せず、コンソールに再度ログインしませんでした。

エラーに加えて、次のPythonソースコードに表示される警告も表示されます(ありがとうございますgrep)。

if platform.python_implementation() == "CPython":
    message = (
        "Python 2.7 reached the end of its life on January "
        "1st, 2020. Please upgrade your Python as Python 2.7 "
        "is no longer maintained. "
    ) + message
deprecated(message, replacement=None, gone_in=None)

代替アップデートが私に適していないのはなぜですか?スクリプトと「aicoap」インストールが機能するようにするにはどうすればよいですか?

ベストアンサー1

おすすめ記事