0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2025-01-03 03:10:07 -05:00

Update README.md.in

This commit is contained in:
Bert van der Weerd 2021-12-29 06:54:09 +01:00
parent 56c68fd746
commit adbce92867
No known key found for this signature in database
GPG key ID: 4CFABB96ADE0F5B1
2 changed files with 28 additions and 0 deletions

View file

@ -79,3 +79,17 @@ If you have a working build environment, you can build librewolf with:
make librewolf
```
This extracts the source, and then tries to `./mach build && ./mach package`.
## FAQ: Common issues when setting up the Mozilla build environment
1. it doesnt find a suitable python.
```
export MACH_USE_SYSTEM_PYTHON=1
make librewolf
```
2. <python-package-1> requires <python-package-2, which is not installed.
```
pip3 install <python-package=2>
```
And retry.

View file

@ -79,3 +79,17 @@ If you have a working build environment, you can build librewolf with:
make librewolf
```
This extracts the source, and then tries to `./mach build && ./mach package`.
## FAQ: Common issues when setting up the Mozilla build environment
1. it doesnt find a suitable python.
```
export MACH_USE_SYSTEM_PYTHON=1
make librewolf
```
2. <python-package-1> requires <python-package-2, which is not installed.
```
pip3 install <python-package=2>
```
And retry.