blob: 6836575375ceecbd25fe5b0d73efe04b2015c066 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
.. _installing.python:
Python library
==============
Archinstall ships on `PyPi <https://pypi.org/>`_ as `archinstall <pypi.org/project/archinstall/>`_.
But the library can be installed manually as well.
.. warning::
This is not required if you're running archinstall on a pre-built ISO. The installation is only required if you're creating your own scripted installations.
Using pacman
------------
Archinstall is on the `official repositories <https://wiki.archlinux.org/index.php/Official_repositories>`_.
To install both the library and the archinstall script:
.. code-block:: console
sudo pacman -S archinstall
Or, to install just the library:
.. code-block:: console
sudo pacman -S python-archinstall
Using PyPi
----------
The basic concept of PyPi applies using `pip`.
Either as a global library:
.. code-block:: console
sudo pip install archinstall
Or as a user module:
.. code-block:: console
pip --user install archinstall
Which will allow you to start using the library.
.. _installing.python.manual:
Manual installation
-------------------
You can either download the github repo as a zip archive.
Or you can clone it, we'll clone it here but both methods work the same.
.. code-block:: console
git clone https://github.com/archlinux/archinstall
Either you can move the folder into your project and simply do
.. code-block:: python
import archinstall
Or you can use `setuptools <https://pypi.org/project/setuptools/>`_ to install it into the module path.
.. code-block:: console
sudo python setup.py install
|