回答編集履歴
4
コメント追加
answer
CHANGED
@@ -29,4 +29,11 @@
|
|
29
29
|
|
30
30
|
```console
|
31
31
|
$ sudo pip3 install vpython
|
32
|
+
```
|
33
|
+
|
34
|
+
今回は `[...]` で省略されているエラーログの部分に重要なログが記載されていました。この手のエラーが発生した場合、まずは `Ubuntu` `openssl` `install` などのキーワードを組み合わせてWEB検索してみることをおすすめいたします。
|
35
|
+
|
36
|
+
```console
|
37
|
+
build/temp.linux-aarch64-3.7/_openssl.c:546:10: fatal error: openssl/opensslv.h: そのようなファイルやディレクトリはありません
|
38
|
+
546 | #include <openssl/opensslv.h>
|
32
39
|
```
|
3
コマンド更新
answer
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
|
16
16
|
```console
|
17
17
|
$ sudo pip3 install pip --upgrade
|
18
|
-
$ sudo apt-get install build-essential libssl-dev libffi-dev python3-dev
|
18
|
+
$ sudo apt-get install build-essential libssl-dev libffi-dev python3-dev openssl
|
19
19
|
|
20
20
|
```
|
21
21
|
|
2
文言追記
answer
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
まず、`cryptography`はサポートしているプラットフォームにaarch64が無いようです。
|
2
|
+
**[https://pypi.org/project/cryptography/#files](https://pypi.org/project/cryptography/#files)**
|
3
|
+
**[https://cryptography.io/en/latest/installation/#supported-platforms](https://cryptography.io/en/latest/installation/#supported-platforms)**
|
2
4
|
```
|
3
5
|
x86-64 CentOS 7.x
|
4
6
|
x86-64 Fedora (latest)
|
1
コマンド修正
answer
CHANGED
@@ -12,6 +12,7 @@
|
|
12
12
|
**[ビルドに必要なパッケージのインストール](https://cryptography.io/en/latest/installation/#debian-ubuntu)**
|
13
13
|
|
14
14
|
```console
|
15
|
+
$ sudo pip3 install pip --upgrade
|
15
16
|
$ sudo apt-get install build-essential libssl-dev libffi-dev python3-dev
|
16
17
|
|
17
18
|
```
|