#You'll need to have composer working on your server in order to bring in the address module dependencies.
#cd to your drupal root and
> drush dl composer_update
> php modules/composer_update/scripts/init.php
> composer drupal-update
#Now run the installation process as normal


#How to populate all the addresses randomly in devel/php
use Drupal\cforge\DemoUserDataEn;
use Drupal\user\Entity\User;
foreach (User::loadMultiple() as $account) {
  $account->address->dependent_locality = DemoUserDataEn::randNeighbourhood();
  $account->phones->value = DemoUserDataEn::randStreet();
  $account->address->address_line1 = DemoUserDataEn::randStreet();
  $account->address->dependent_locality = DemoUserDataEn::randNeighbourhood();
  $phones = [DemoUserDataEn::randPhone(), DemoUserDataEn::randPhone()];
  $account->set('phones', $phones);
  $account->save();
}

