Changes between Version 29 and Version 30 of venice/bsp
- Timestamp:
- 03/10/2025 08:57:09 PM (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
venice/bsp
v29 v30 32 32 33 33 The following pre-requisites are needed to build the Venice BSP: 34 * Linux Development host (desktop or laptop computer) (Ubuntu 16.04 is used by Gateworks and tested)35 * Python 2.x (required by the 'repo' tool)34 * Linux Development host (desktop or laptop computer) 35 * Python 3.x 36 36 * Git (used for source code repositories) 37 37 * repo (used to manage multiple git repos) 38 39 Ubuntu Jammy (20.04) is used by Gateworks for automated builds of the Venice BSP. If using a different OS or version you may need to adjust the above packages. 38 40 39 41 Installing pre-requisites: … … 45 47 git config --global user.name "Your Name" 46 48 git config --global color.ui true 49 }}} 50 * for Ubuntu 18.04 bionic: 51 - skip python-is-python3 and additionally perform the following: 52 {{{#!bash 53 sudo apt install -y python3-pip 54 pip3 install importlib-resources 47 55 }}} 48 56