For fresh D8.78 install the basic install instructions don't work.

Drush Version 10.0.1
Composer Version 1.9.1
php 7.3x

composer require 'drupal/radix:^4.6'
composer require 'drupal/components:^1.1'

drush en components

drush en radix gives

In PmCommands.php line 247:

Unable to install modules radix due to missing modules radix.

CommentFileSizeAuthor
#10 Screenshot 2019-11-28 at 14.21.12.jpg12.47 KBnikitas

Comments

Rar9 created an issue. See original summary.

rar9’s picture

Issue summary: View changes

Drush command ONLY works in /web folder

So please update your guide accordingly.

rar9’s picture

Priority: Critical » Normal
Status: Active » Needs review
cpierce42’s picture

Status: Needs review » Needs work

Comment #2 is untrue for me.

In a lando environment running under my base app/ folder or under app/web/ fails. Components is already enabled. Both are installed via composer. Output of failure:

>drush en radix -y

In PmCommands.php line 247:

  Unable to install modules radix due to missing modules radix.
cpierce42’s picture

rachel_norfolk’s picture

radix is a theme - need to use drush then radix to enable the radix theme.

shadcn’s picture

Assigned: Unassigned » shadcn

I've not upgraded to Drush 10 yet. I'll take a look at it.

tcarrAI’s picture

I was running into the same issues described above in OP and #4 (for context my Lando is on v3.0.0-rc.21 and my Lando Drush is 9.7.1)

I tried running the commands as radix was enabled but not default and when radix was enabled and default, but I would get the same error messages above.

I was able to create a sub-theme with the following code:

lando drush --include="web/themes/contrib/radix" radix:create "Theme Name"

Change "Theme Name" do the name you want your subtheme to have, still in quotes

runzipel’s picture

#8 worked for me! THX! Also on Drush 10 with latest dev of radix.

nikitas’s picture

StatusFileSize
new12.47 KB

#6 has a typo
drush theme:enable radix worked for me.
also
drush theme radix creates an error

Drush Error Log

pandelon’s picture

Drupal 8.8.1
Drush Version 10.1.1
Composer Version 1.9.2

working solution (on 20.01.2020):
drush theme:enable radix

for subtheme generate:
drush --include="themes/contrib/radix" radix:create "Theme Name"

phreaknerd’s picture

#11 is only working if you are located in the "web" folder.
Take care of the include-path. It has to be relative to your actual location while executing the drush command.

I'm always working from drupal root, so it would be:
drush --include="web/themes/contrib/radix" radix:create "Theme Name"

emilcarpenter’s picture

Version: 8.x-4.6 » 5.0.0-rc2
Component: Code » Documentation
Status: Needs work » Active

This issue might originate from the documentation at https://www.drupal.org/project/radix

Quick start for Drupal 8 & 9
1. Download and enable radix and components: composer require drupal/radix; drush en components radix -y
should be:
1. Download and enable radix and components: composer require drupal/radix; drush en components -y;drush then radix -y

Tested with:
Drupal 9.3
Radix 5.0.0-rc2

emilcarpenter’s picture

Version: 5.0.0-rc2 » 5.x-dev

Version change from 5.0.0.-rc2 to 5.x-dev

I hope this is the best practices approach, to file this against 5.x-dev.

Maintainers, please correct me if I am wrong.

emilcarpenter’s picture

Category: Bug report » Task
Related issues: +#3117733: Update module Documentation about Drupal 8 Installation

Added related/duplicate issue.

The solution is on the current page, in #13

doxigo’s picture

Status: Active » Fixed

Thanks for the comment Emil, fixed on the docs

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.

wetbadger’s picture

I get

Unable to install modules components, radix due to missing modules components.

doxigo’s picture

@wetbadger based on the frontpage docs, if you are using 5.x version, there's a dependency on the components module which you should download and enable.

If you are on version 6.x which I assume not, there's no dependency there, also why not try the 6.x version? :)

doxigo’s picture