PoseEstimation-TFLiteSwift
PoseEstimation-TFLiteSwift copied to clipboard
Package.swift has no Package.swift manifest for version 0.2.8
I try to build the project locally but have issues with the TFLiteSwift-Vision dependeny. I get the error:
No such module 'TFLiteSwift_Vision'
and
/Package.swift has no Package.swift manifest for version 0.2.8 in https://github.com/tucan9389/TFLiteSwift-Vision
Using Xcode 13.4.1.
Any ideas what I am doing wrong?
@pc11000 Hmm.. did you use Swift Package Manager?
First did with pod install and then i tried directly in Xcode file /add packages...
With pod install I get the output:
`Analyzing dependencies Downloading dependencies Installing TFLiteSwift-Vision (0.2.8) Installing TensorFlowLiteC (2.4.0) Installing TensorFlowLiteSwift (2.4.0) Generating Pods project Integrating client project Pod installation complete! There is 1 dependency from the Podfile and 3 total pods installed.
[!] Automatically assigning platform iOS with version 12.0 on target PoseEstimation-TFLiteSwift because no platform was specified. Please specify a platform for this target in your Podfile. See https://guides.cocoapods.org/syntax/podfile.html#platform.
[!] The PoseEstimation-TFLiteSwift [Debug] target overrides the EXCLUDED_ARCHS[sdk=iphonesimulator*] build setting defined in Pods/Target Support Files/Pods-PoseEstimation-TFLiteSwift/Pods-PoseEstimation-TFLiteSwift.debug.xcconfig'. This can lead to problems with the CocoaPods installation - Use the $(inherited)` flag, or
- Remove the build settings from the target.
[!] The PoseEstimation-TFLiteSwift [Release] target overrides the EXCLUDED_ARCHS[sdk=iphonesimulator*] build setting defined in Pods/Target Support Files/Pods-PoseEstimation-TFLiteSwift/Pods-PoseEstimation-TFLiteSwift.release.xcconfig'. This can lead to problems with the CocoaPods installation - Use the $(inherited) flag, or - Remove the build settings from the target.
@pc11000 I think... you don't need to add packages directly into Xcode.
You should do following:
- pod install
- open
PoseEstimation-TFLiteSwift.xcworkspace
Can you do it again without the "adding package directly" step?
Also under frameworks the entry is red:
this are the build errors:

I think... you don't need to add packages directly into Xcode.
You should do following:
- pod install
- open
PoseEstimation-TFLiteSwift.xcworkspaceCan you do it again without the "adding package directly" step? ok thx I try
@pc11000 I have never seen the error before. Right now, I'm a little bit busy. If I solve the problem, I'll update or comment the detail. If you solve it first, please tell me in this thread.
Thanks for your error report.
Ok i think now i am a step further. Now I get some errors about missing tflite files:
../PoseEstimation-TFLiteSwift/PoseEstimation-TFLiteSwift/imgclsmob-Pose/simplepose_resneta152b_coco.tflite: No such file or directory
@tucan9389 I had to download the models manually, now its building and running. Thx for the fast support!