Warnings with .xcworkspace build stops progress on RxSwift tutorials

I did further homework trying to get started on the RxSwift video tutorials working my way through Episode 3. I managed to install RxSwift using pods and when I launch RxSwift.playground from the Navigation window in Xcode, Xcode reports no issues.

However my RxSwift.playground results sidebar shows no output (unlike output shown in Episode 3 at 5:46). Is this because Headers and Local Podspecs are both empty (as shown below) …

Folders (1-of-2)
Folders%20(1-of-2)
and therefore Sources and Resources folders in the Xcode navigation window will also be empty ?

Code (2-of-2)
Code%20(2-of-2)
I made the necessary adjustments to the Podfile in this procedure making sure that my iOS Deployment Target in Xcode matches the instruction in my Podfile but am unable to install RxSwift successfully probably because the Headers and Local Podspecs are empty.

Here is my Podfile

# Uncomment the next line to define a global platform for your project
    `platform :ios, '11.0'`
    `target 'Installing RxSwift' do`
 # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!
  # Pods for Installing RxSwift
  pod 'RxSwift', '~> 4.0'
end

It made no difference whether I set the iOS Deployment Target to 12.2 (the latest used in my version of Xcode) or 11.0 (as shown in the tutorial). The problem is the same. I also resorted to Scott’s nuke and repave option as suggested in Episode 3 of the tutorial but the problem remains (an excellent, thoughtfully-presented tutorial by the way, thanks).

I am using Mojave 10.14.6 running Xcode 10.2.1.

Have there been revisions to this tutorial ? Or do either of my examples give any clue to what I am doing wrong ? I welcome any suggestions I should try to get on top of this. Thanks.