From 932c34f8d59a7967b8ddb56eb00044622518a78e Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Fri, 22 Feb 2019 15:25:24 -0800 Subject: [PATCH] Removes CocoaPods instructions from Swift TFLite library README. CocoaPod is not yet available. PiperOrigin-RevId: 235269544 --- tensorflow/lite/experimental/swift/README.md | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/tensorflow/lite/experimental/swift/README.md b/tensorflow/lite/experimental/swift/README.md index cf7eeac6b40..754ecd68193 100644 --- a/tensorflow/lite/experimental/swift/README.md +++ b/tensorflow/lite/experimental/swift/README.md @@ -59,20 +59,3 @@ script: ```shell generate_xcodeproj.sh --genconfig tensorflow/lite/swift/TensorFlowLite.tulsiproj:TensorFlowLite --outputfolder ~/path/to/generated/TensorFlowLite.xcodeproj ``` - -### CocoaPods - -Add the following to your `Podfile`: - -```ruby -use_frameworks! -pod 'TensorFlowLiteSwift' -``` - -Then, run `pod install`. - -In your Swift files, import the module: - -```swift -import TensorFlowLite -```