Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt setup instructions for externally managed Python versions #271

Merged
merged 1 commit into from
Mar 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions Tutorials/get-the-tutorials.md
Original file line number Diff line number Diff line change
@@ -7,13 +7,17 @@ SPDX-License-Identifier: CC-BY-SA-4.0
SPDX-FileCopyrightText: 2024 seL4 Project a Series of LF Projects, LLC.
---

# Getting the tutorials
## Python Dependencies

*Hint:* This step only needs to be done once, i.e. before doing your first tutorial.

The CAmkES python dependencies are required to build the [tutorials](ReworkedTutorials). To install you can run:
```

```sh
pip3 install --user camkes-deps
```
*Hint:* This step only needs to be done once, i.e. before doing your first tutorial.

{% include pip-instructions.md %}

## Get the code
All code for the tutorials is described in the <a href="https://github.com/seL4/sel4-tutorials-manifest">sel4-tutorials-manifest</a>. Get the code with:
30 changes: 30 additions & 0 deletions _includes/pip-instructions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{% comment %}
SPDX-License-Identifier: CC-BY-SA-4.0
SPDX-FileCopyrightText: Copyright 2025 UNSW, Sydney
{% endcomment %}
{% assign deps = include.deps | default: "camkes-deps" %}
{% assign venv = include.venv | default: "seL4-venv" %}

<details>
<summary>Error: Python environment is externally managed</summary>
<div markdown="1">

Some Linux distributions have changed how Python is managed. If you get an error
saying the Python 'environment is externally managed' follow the instructions
below. The first two steps are needed only once for setup.

```sh
python3 -m venv {{venv}}
./{{venv}}/bin/pip install {{deps}}
```

The following step is needed every time you start using the build environment
in a new shell.

```sh
source ./{{venv}}/bin/activate
```

It is not important where the `{{venv}}` directory is located.
</div>
</details>
2 changes: 2 additions & 0 deletions content_collections/_dependencies/camkes.md
Original file line number Diff line number Diff line change
@@ -16,6 +16,8 @@ The Python dependencies required by the CAmkES build toolchain can be installed
pip3 install --user camkes-deps
```

{% include pip-instructions.md %}

### Haskell Dependencies

The CAmkES build toolchain additionally requires Haskell. You can install the [Haskell stack](https://haskellstack.org) on your distribution by running:
5 changes: 3 additions & 2 deletions content_collections/_dependencies/sel4.md
Original file line number Diff line number Diff line change
@@ -91,8 +91,9 @@ The dependencies listed in our Docker files [repository](https://github.com/seL4
Regardless of your Linux distribution, python dependencies are required to build seL4, the manual and its proofs. To install you can run:

```sh
pip3 install --user setuptools
pip3 install --user sel4-deps
pip3 install --user setuptools sel4-deps
```

(Some distributions use `pip` for python3, others use `pip3`. Use the Python 3 version for your distribution)

{% include pip-instructions.md deps="sel4-deps" %}