On Feb 4, 2023, at 6:31 PM, sam russo <samr...@gmail.com> wrote:
Compiling Python/kivy app for Linuxmint/Ubuntu gives Error: No module named 'kivy_deps'
--
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.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/58ac8006-5bc1-44f4-98fe-5e54610c3541n%40googlegroups.com.
python -m pip install kivy --pre --no-deps --index-url https://kivy.org/downloads/simple/
python -m pip install "kivy[base]" --pre --extra-index-url https://kivy.org/downloads/simple/
except of course in a virtual environment you simply do the "pip install ...." part only (both lines)
(virt) sam@lmde5main:~/Documents/PythonProjs/kivytry_fileImagechooser$ pip install kivy --pre --no-deps --index-url https://kivy.org/downloads/simple/
Looking in indexes: https://kivy.org/downloads/simple/
Requirement already satisfied: kivy in /home/sam/Documents/PythonProjs/virt/lib/python3.9/site-packages (2.2.0.dev0)
(virt) sam@lmde5main:~/Documents/PythonProjs/kivytry_fileImagechooser$ pip install "kivy[base]" --pre --extra-index-url https://kivy.org/downloads/simple/
Looking in indexes: https://pypi.org/simple, https://kivy.org/downloads/simple/
Requirement already satisfied: kivy[base] in /home/sam/Documents/PythonProjs/virt/lib/python3.9/site-packages (2.2.0.dev0)
Requirement already satisfied: Kivy-Garden>=0.1.4 in /home/sam/Documents/PythonProjs/virt/lib/python3.9/site-packages (from kivy[base]) (0.1.5)
Requirement already satisfied: pygments in /home/sam/Documents/PythonProjs/virt/lib/python3.9/site-packages (from kivy[base]) (2.14.0)
Requirement already satisfied: docutils in /home/sam/Documents/PythonProjs/virt/lib/python3.9/site-packages (from kivy[base]) (0.19)
Requirement already satisfied: pillow in /home/sam/Documents/PythonProjs/virt/lib/python3.9/site-packages (from kivy[base]) (9.4.0)
Requirement already satisfied: requests in /home/sam/Documents/PythonProjs/virt/lib/python3.9/site-packages (from kivy[base]) (2.28.1)
Requirement already satisfied: idna<4,>=2.5 in /home/sam/Documents/PythonProjs/virt/lib/python3.9/site-packages (from requests->kivy[base]) (3.4)
Requirement already satisfied: charset-normalizer<3,>=2 in /home/sam/Documents/PythonProjs/virt/lib/python3.9/site-packages (from requests->kivy[base]) (2.1.1)
Requirement already satisfied: certifi>=2017.4.17 in /home/sam/Documents/PythonProjs/virt/lib/python3.9/site-packages (from requests->kivy[base]) (2022.12.7)
Requirement already satisfied: urllib3<1.27,>=1.21.1 in /home/sam/Documents/PythonProjs/virt/lib/python3.9/site-packages (from requests->kivy[base]) (1.26.13)