Skip to content

Commit b677c8e

Browse files
authored
Merge pull request #1111 from kivy/tshirtman-patch-1
Update README.md
2 parents f700d80 + a69346a commit b677c8e

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,26 @@ Note that this tool has nothing to do with the eponymous online build service
3131
- Install buildozer:
3232

3333
# 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
3536

3637
# 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
3840

3941
# git clone, for working on buildozer
4042
git clone https://github.com/kivy/buildozer
4143
cd buildozer
4244
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
4454

4555
- Go into your application directory and run:
4656

0 commit comments

Comments
 (0)