如何在Ubuntu中打包kivy和python到可执行文件?



我有一个由许多Python和KV文件组成的Kivy应用程序。我想创建一个可执行文件,以便最终用户可以在Ubuntu中运行它。

https://kivy.org/doc/stable/guide/packaging.html文档提到了如何在OS X和Windows中打包,但没有提到Linux发行版。

如有任何帮助,不胜感激。

这是我使用的一个方案。这个脚本创建一个.sh文件来运行python/kivy应用程序:

#!/usr/bin/tcsh
set APP_NAME="HandAndFoot"
# setup output
set OUTPUT="${APP_NAME}.sh"
if $#argv > 0 then
set OUTPUT=$argv[1]
endif
echo "output will be to $OUTPUT"
# copy initial part of shell script into output file
cp ${APP_NAME}.basis $OUTPUT
# create a tar file of the Hand And Foot app
rm -f tmp.tar
tar cf app.tar *.py *.kv dropbox-trusted-certs.crt dialogs/*.py dialogs/*.kv dialogs/*.png resources/*.png resources/*.ico resources/default/*.png
# add the uuencoded version of the app to the end of the output file
uuencode app.tar app.tar >> $OUTPUT
chmod 755 $OUTPUT
# How does a file named "0" get created?? Don't know, but this gets rid of it
rm -f 0

上面的脚本创建了一个HandAndFoot.sh,其中包含一个tar的应用程序。在这种情况下,应用程序被称为HandAndFoot。当HandAndFoot.sh运行时,它会执行应用程序的main.py脚本。

除了上面的脚本,还需要另一个文件(在本例中名为HandAndFoot.basis):

#!/bin/bash
APP_NAME="HandAndFoot"
PYTHON="NONE"
# check if python3 is installed
pyvers=$(python3 -V 2>&1)
echo $pyvers
regex="Python 3.*"
if [[ $pyvers =~ $regex ]]
then
PYTHON="python3"
else
# check if python is installed
pyvers=$(python -V 2>&1)
if [[ $pyvers =~ $regex ]]
then
PYTHON="python"
fi
fi
if [[ $PYTHON != "NONE" ]]
then
kivyimport=$(
$PYTHON 2>&1  <<EOF
import kivy
EOF
)
kivyregex=".*Kivy .*"
if ! [[ $kivyimport =~ $kivyregex ]]
then
echo "Python is installed, but Kivy is also required"
echo "Use you package Manager or 'apt-get' to install Kivy"
exit
fi
else
echo "Python and Kivy are not installed, but are required for the $APP_NAME app"
echo "Use your Package Manager or 'apt-get' to install Python and Kivy"
exit
fi
match=$(grep --text --line-number '^PAYLOAD:$' $0 | cut -d ':' -f 1)
payload_start=$((match + 1))
tail -n +$payload_start $0 | uudecode
rm -rf /tmp/$APP_NAME
mkdir /tmp/$APP_NAME
mv app.tar /tmp/$APP_NAME
cd /tmp/$APP_NAME
tar xvf app.tar
$PYTHON main.py &
exit

PAYLOAD:

最后一个脚本检查Python和Kivy的安装,如果Python和Kivy已经安装,则运行main.py。这些脚本可以根据需要修改为不同的应用程序。

相关内容

  • 没有找到相关文章

最新更新