Skip to content
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:Bitcoin-Brainbow/Brainbow
Browse files Browse the repository at this point in the history
  • Loading branch information
xavierfiechter committed Aug 5, 2023
2 parents 72fc7d0 + 90a6131 commit 6c2344f
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 1 deletion.
3 changes: 2 additions & 1 deletion buildozer.spec
Original file line number Diff line number Diff line change
Expand Up @@ -388,8 +388,9 @@ android.debug_artifact = apk
#p4a.fork = kivy
# (str) python-for-android branch to use, defaults to master
p4a.branch = master
#p4a.branch = master
#p4a.branch = develop
p4a.branch = release-2022.12.20
# (str) python-for-android specific commit to use, defaults to HEAD, must be within p4a.branch
#p4a.commit = HEAD
Expand Down
53 changes: 53 additions & 0 deletions install.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# How to run the sources on your own machine

## Create a Python3 virtual environment

```shell
python -m venv ~/brainbowenv/
```

## Activate the Python3 virtual environment

```shell
source ~/brainbowenv/bin/activate
```

Note: you can deactivate the python environment at any time with the command `deactivate`
read more about it [here](https://docs.python.org/3/library/venv.html)

## Clone Brainbow repository and install requirements

```shell
git clone https://github.com/Bitcoin-Brainbow/Brainbow.git brainbow
cd brainbow/
```

Add the following to the new_requirements.txt

kivy-garden
kivy
kivy_garden.graph
kivy_garden.qrcode
embit
numpy
camera4kivy
pyzbar

```shell
pip install -r new_requirements.txt
```

Note: for MacOS install zbar with brew

```shell
brew install zbar
```

## Start the app

```shell
python main.py
```

## NOTES:
- Tor must be installed and running.

0 comments on commit 6c2344f

Please sign in to comment.