A simple Kivy app which gives the name suggestions based on the input config.
- Length of the name
- Allowed characters in the name Total numbers of name to suggest can also be set before generate the name.
Author | Version | Last Updated |
---|---|---|
Saurav Kumar | 1.0.0 | 10th June, 2018 |
sudo apt-get install virtualenv python-pip
For more details see the kivy installation in virtualenv:
https://kivy.org/docs/installation/installation-linux.html#installation-in-a-virtual-environment
Note: I recommend to install buildozer==0.32, Cython==0.23.1 and kivy==1.9.1 for this app.
sudo -H pip install pip -U
sudo -H pip install setuptools -U
git clone https://github.com/sauravmahuri2007/kivynamegenerator.git
cd kivynamegenerator
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
# ignore these steps if you already created a virtualenv in 1st step.
python main.py
Refer buildozer installation documentation (installing buildozer in virtualenv is recommended):
http://buildozer.readthedocs.io/en/latest/installation.html
Note: following steps can be used to install buildozer in virtualenv:
virtualenv buildozerenv
source buildozerenv/bin/activate
pip install buildozer==0.32 Cython==0.23.1
Also make sure to chance the requirements = kivy
to requirements = kivy==1.9.1
in buildozer.spec
file created after buildozer init