In this recipe, we will learn how to set up TensorFlow in a mobile environment. My environment is macOS, and the idea here is to develop for iOS and iPhone.
Installing TensorFlow mobile for macOS and iPhone
Getting ready
We will use the Xcode development environment and CocoaPods for pre-installing TensorFlow. I will assume that Xcode is already installed in your environment. If not, please download it from https://developer.apple.com/xcode/.
How to do it...
We will proceed with the recipe as follows:
- Install cocoapods with the following commands
sudo gem install cocoapods...