|
23 | 23 | distributed to other users. The packaged source is saved to the 'dist' |
24 | 24 | folder in the current directory. |
25 | 25 |
|
26 | | - $ python setup.py sdist |
| 26 | + $ python3 setup.py sdist |
27 | 27 |
|
28 | 28 |
|
29 | 29 | INSTALLATION OPTIONS |
30 | 30 |
|
31 | 31 | pip - installing and managing Python packages (recommended): |
32 | 32 |
|
33 | 33 | # Installing from Python Package Index (https://pypi.python.org/pypi). |
34 | | - $ pip install tuf |
| 34 | + $ python3 -m pip install tuf |
35 | 35 |
|
36 | 36 | # Installing from local source archive. |
37 | | - $ pip install <path to archive> |
| 37 | + $ python3 -m pip install <path to archive> |
38 | 38 |
|
39 | 39 | # Or from the root directory of the unpacked archive. |
40 | | - $ pip install . |
| 40 | + $ python3 -m pip install . |
41 | 41 |
|
42 | 42 | # Installing optional requirements (i.e., after installing tuf). |
43 | 43 | # Support for creation of Ed25519 signatures and support for RSA and ECDSA |
44 | 44 | # signatures in general requires optional dependencies: |
45 | | - $ pip install securesystemslib[crypto,pynacl] |
| 45 | + $ python3 -m pip install securesystemslib[crypto,pynacl] |
46 | 46 |
|
47 | 47 |
|
48 | 48 | Alternate installation options: |
|
51 | 51 | run one of the following shell commands: |
52 | 52 |
|
53 | 53 | Install to the global site-packages directory. |
54 | | - $ python setup.py install |
| 54 | + $ python3 setup.py install |
55 | 55 |
|
56 | 56 | Install to the user site-packages directory. |
57 | | - $ python setup.py install --user |
| 57 | + $ python3 setup.py install --user |
58 | 58 |
|
59 | 59 | Install to a chosen directory. |
60 | | - $ python setup.py install --home=<directory> |
| 60 | + $ python3 setup.py install --home=<directory> |
61 | 61 |
|
62 | 62 |
|
63 | 63 | Note: The last two installation options may require modification of |
|
96 | 96 | 'Operating System :: POSIX :: Linux', |
97 | 97 | 'Operating System :: MacOS :: MacOS X', |
98 | 98 | 'Operating System :: Microsoft :: Windows', |
99 | | - 'Programming Language :: Python', |
100 | 99 | 'Programming Language :: Python :: 3', |
101 | 100 | 'Programming Language :: Python :: 3.6', |
102 | 101 | 'Programming Language :: Python :: 3.7', |
|
0 commit comments