Hi everyone
I'm starting to test kivy, I'm a complete beginner. When I try to import kivy on a Python Interpreter it logs this
(kivy_venv) alan@alan-MS-7721:~/kivy_venv/lib/python3.12$ python
Python 3.12.3 (main, Feb 4 2025, 14:48:35) [GCC 13.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import kivy
[ERROR ] Error when copying logo directory
Traceback (most recent call last):
File "/home/alan/kivy_venv/lib/python3.12/site-packages/kivy/__init__.py", line 372, in <module>
shutil.copytree(join(kivy_data_dir, 'logo'), icon_dir)
File "/usr/lib/python3.12/shutil.py", line 598, in copytree
with os.scandir(src) as itr:
^^^^^^^^^^^^^^^
FileNotFoundError: [Errno 2] No such file or directory: '/home/alan/kivy_venv/lib/python3.12/site-packages/kivy/data/logo'
[INFO ] [Logger ] Record log in /home/alan/.kivy/logs/kivy_25-03-31_1.txt
[INFO ] [Kivy ] v2.3.1
[INFO ] [Kivy ] Installed at "/home/alan/kivy_venv/lib/python3.12/site-packages/kivy/__init__.py"
[INFO ] [Python ] v3.12.3 (main, Feb 4 2025, 14:48:35) [GCC 13.3.0]
[INFO ] [Python ] Interpreter at "/home/alan/kivy_venv/bin/python"
[INFO ] [Logger ] Purge log fired. Processing...
[INFO ] [Logger ] Purge finished!
>>>
OS: Ubuntu 24.04.2 LTS
There is no reference on the web about this issue. Any help apreciated
Alan Etkin