summaryrefslogtreecommitdiff
path: root/docs/src/gettingstarted/building/example.md
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2024-11-21 15:48:24 +0100
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2024-11-26 10:54:24 +0100
commitd6987c06f48b61352289181954f5a436c5f2379f (patch)
treec1bfd0e08480fbb083db54d81d16ba1330d9e3af /docs/src/gettingstarted/building/example.md
parentb701d19e8b8b45226f6cb1090dd160eea989ca7e (diff)
Docs: Move to Mkdocs & Codeberg pages
Diffstat (limited to 'docs/src/gettingstarted/building/example.md')
-rw-r--r--docs/src/gettingstarted/building/example.md29
1 files changed, 0 insertions, 29 deletions
diff --git a/docs/src/gettingstarted/building/example.md b/docs/src/gettingstarted/building/example.md
deleted file mode 100644
index 58b1302..0000000
--- a/docs/src/gettingstarted/building/example.md
+++ /dev/null
@@ -1,29 +0,0 @@
-# Example: commands to build for Python
-This section gives an example on how to build and install the library from scratch (assuming you have all the dependencies). It builds the Go library and then builds and installs the Python wrapper.
-
-1. Clone the library
-```bash
-git clone https://codeberg.org/eduVPN/eduvpn-common
-```
-
-2. Go to the library directory
-```bash
-cd eduvpn-common
-```
-
-3. Build the go library
-```bash
-make
-```
-
-4. Build the python wrapper
-```bash
-make -C wrappers/python
-```
-
-5. Install the wheel using pip
-```bash
-# x.x.x is the version here
-pip install wrappers/python/dist/eduvpncommon-x.x.x-py3-none-linux_x86_64.whl
-```
-Note that the name of your wheel changes on the platform and version.