まず、cryptography
はサポートしているプラットフォームにaarch64が無いようです。
https://pypi.org/project/cryptography/#files
https://cryptography.io/en/latest/installation/#supported-platforms
x86-64 CentOS 7.x
x86-64 Fedora (latest)
macOS 10.15 Catalina
x86-64 Ubuntu 16.04 and rolling
x86-64 Debian Stretch (9.x), Buster (10.x), Bullseye (11.x), and Sid (unstable)
x86-64 Alpine (latest)
32-bit and 64-bit Python on 64-bit Windows Server 2019
しかし、公式の手順通りに試して見るなら、下記のとおりまずはcryptography
をビルド・インストールしてみてください。申し訳ありませんが、手元に18.04の環境がすぐ準備できないため確定的なことがお伝えできません。
ビルドに必要なパッケージのインストール
console
1$ sudo pip3 install pip --upgrade
2$ sudo apt-get install build-essential libssl-dev libffi-dev python3-dev openssl
3
ビルド・インストール
console
1$ sudo pip3 install cryptography --no-binary cryptography
最後に下記を再度実行してもうまくいかないでしょうか?
console
1$ sudo pip3 install vpython
今回は [...]
で省略されているエラーログの部分に重要なログが記載されていました。この手のエラーが発生した場合、まずは Ubuntu
openssl
install
などのキーワードを組み合わせてWEB検索してみることをおすすめいたします。
console
1build/temp.linux-aarch64-3.7/_openssl.c:546:10: fatal error: openssl/opensslv.h: そのようなファイルやディレクトリはありません
2 546 | #include <openssl/opensslv.h>
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/20 23:07
2020/04/21 02:18