File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -31,16 +31,26 @@ Note that this tool has nothing to do with the eponymous online build service
31
31
- Install buildozer:
32
32
33
33
# via pip (latest stable, recommended)
34
- sudo pip install buildozer
34
+ # if you use a virtualenv, don't use the `--user` option
35
+ pip install --user buildozer
35
36
36
37
# latest dev version
37
- sudo pip install https://github.com/kivy/buildozer/archive/master.zip
38
+ # if you use a virtualenv, don't use the `--user` option
39
+ pip install --user https://github.com/kivy/buildozer/archive/master.zip
38
40
39
41
# git clone, for working on buildozer
40
42
git clone https://github.com/kivy/buildozer
41
43
cd buildozer
42
44
python setup.py build
43
- sudo pip install -e .
45
+ pip install -e .
46
+
47
+ - Check buildozer is in your path
48
+
49
+ `which buildozer`
50
+ # if there is no result, and you installed with --user, add this line at the end of your `~/.bashrc` file.
51
+ export PATH=~/.local/bin/:$PATH
52
+ # and then run
53
+ . ~/.bashrc
44
54
45
55
- Go into your application directory and run:
46
56
You can’t perform that action at this time.
0 commit comments