sudo apt-get install -y \ python-pip \ build-essential \ git \ python3 \ python3-dev \ ffmpeg \ libsdl2-dev \ libsdl2-image-dev \ libsdl2-mixer-dev \ libsdl2-ttf-dev \ libportmidi-dev \ libswscale-dev \ libavformat-dev \ libavcodec-dev \ zlib1g-dev
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I'm having the same problem as you.
I tried everything and it did not work for me.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+unsubscribe@googlegroups.com.
sudo apt-get instal -y \python-pip \build-essential \git \
ffmpeg \libsdl2-dev \libsdl2-image-dev \libsdl2-mixer-dev \libsdl2-ttf-dev \libportmidi-dev \libswscale-dev \libavformat-dev \libavcodec-dev \zlib1g-dev
sudo apt-get install python3-venvmkdir kivyenvcd kivyenvpython3 -m venv envsource env/bin/activate
pip install Cython==0.23pip install wheel
pip install kivy==1.91
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
clear |
sudo apt update && sudo apt full-upgrade -y && sudo apt autoremove -y |
read -p "Press enter to continue" |
|
clear |
# to package for android with buildozer below is necessary |
sudo dpkg --add-architecture i386 |
sudo apt install -y libncurses5:i386 libstdc++6:i386 libgtk2.0-0:i386 \ |
libpangox-1.0-0:i386 libpangoxft-1.0-0:i386 libidn11:i386 zlib1g:i386 |
|
sudo apt install -y openjdk-8-jdk |
sudo apt install -y ccache adb apksigner |
|
|
sudo apt install -y build-essential git python-dev python3-dev libssl-dev \ |
libcups2-dev libcairo2-dev libsdl2-dev libsdl2-image-dev \ |
libsdl2-mixer-dev libsdl2-ttf-dev libportmidi-dev libswscale-dev \ |
libavformat-dev libavcodec-dev zlib1g-dev ffmpeg libsmpeg-dev \ |
libgstreamer1.0 gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ |
docutils-common docutils-doc sgml-base xclip xml-core xsel \ |
python-lxml python3-lxml xvfb |
|
read -p "Press enter to continue" |
|
clear |
# get and install miniconda if not exists (not use sudo) |
cd |
if [ ! -f ./Miniconda3-latest-Linux-x86_64.sh ]; then |
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh |
fi |
|
chmod +x Miniconda3-latest-Linux-x86_64.sh |
# run installer, agree with the terms, set default location and answer "yes" to update PATH in .bashrc |
./Miniconda3-latest-Linux-x86_64.sh |
|
# update conda and create kivy virtualenv |
~/miniconda3/bin/conda update --all |
~/miniconda3/bin/conda create -n kivy3 pip setuptools requests |
|
read -p "Press enter to continue" |
|
clear |
source ~/miniconda3/bin/activate kivy3 |
pip install cython==0.23 pillow==4.3.0 # to my app, need this |
# cd kpyconf/ |
# pip install -r need-install.txt |
|
read -p "Press enter to continue" |
|
clear |
# download kivy source code |
cd |
wget https://github.com/kivy/kivy/archive/master.zip |
unzip master.zip |
|
# install from source |
cd kivy-master |
python setup.py install |
pip install kivy-garden |
|
read -p "Press enter to continue" |
|
clear |
cd ~/kivy-master/examples/demo/showcase/ |
python main.py |
|
# Optional - install PyCharm CE |
# wget https://download.jetbrains.com/python/pycharm-community-2018.1.2.tar.gz |
----------------------------------------------------------------------------------------------------------------------------------- |