CiviCRM for Drupal 8 installation notes » History » Revision 2
Revision 1 (Jon Goldberg, 12/24/2018 06:36 PM) → Revision 2/24 (Jon Goldberg, 12/24/2018 06:38 PM)
# CiviCRM for Drupal 8 installation notes
* Install Drupal 8 as normal.
* Follow [the instructions on this gist](https://gist.github.com/dsnopek/56311dbea347874e75180883efabb620).
* Copy files to `<webroot>/libraries/civicrm` by using the [script on this ticket](https://lab.civicrm.org/dev/drupal/issues/9).
* [Hack] To get CKEditor/kcfinder working, copy it to libraries/civicrm: `cp -r $asset_source/packages/kcfinder $asset_dest/packages/`.
* To get `extern` scripts loading correctly, run this (to create a *second* `settings_location.php`):
```bash
cat << EOF > $asset_source/settings_location.php
<?php
define('CIVICRM_CONFDIR', '../../../web/sites');
EOF
```