I created a simple Kivy app using Anaconda (Python 3.8.8). I followed the steps listed on: https://github.com/kivy/kivy-ios to install Kivy and create an Xcode project. However, the project is created with an python version 3.8.2, which is located in /usr/bin/
, but the Anaconda is located in /Users/user/opt/anaconda3/bin/python3
. I've tried Conda activate base
before running toolchain create <title> <app_directory>
, but Xcode still uses the 3.8.2 version. This results in errors, because all packages were installed for the 3.8.8 version. When running python --version
in terminal , I get Python 3.8.8
The question: how to create an Xcode project with the Python 3.8.8 version?