aleph.js icon indicating copy to clipboard operation
aleph.js copied to clipboard

Module not found "https://deno.land/x/aleph/install.ts"

Open mohsen1 opened this issue 2 years ago • 5 comments

Can not install using the instructions here: https://alephjs.org/docs/get-started

deno
Deno.version
{ deno: "1.21.0", v8: "10.0.139.17", typescript: "4.6.2" }
deno run -A https://deno.land/x/aleph/install.ts      
Download https://deno.land/x/aleph/install.ts
Warning Implicitly using latest version (1.0.0-alpha.8) for https://deno.land/x/aleph/install.ts
Download https://deno.land/x/[email protected]/install.ts
error: Module not found "https://deno.land/x/aleph/install.ts".

mohsen1 avatar Apr 23 '22 23:04 mohsen1

If I understood well, this file has been removed in 1.0.0-alpha. Note that the documentation is outdated. But if you want to give it a try you can use land

deno install -A -f -n land https://deno.land/x/[email protected]/cli.ts

don t forget to import the path variable shown in the terminal and then you can run

aleph init
aleph dev
aleph start

tomkimsour avatar Apr 24 '22 10:04 tomkimsour

install aleph cli:

deno install --name=aleph -Ar -f https://deno.land/x/aleph/cli.ts

init vue template:

aleph init aleph-vue --template=vue

init react template:

aleph init aleph-react

linbingquan avatar May 03 '22 09:05 linbingquan

deno install --name=aleph -Ar -f https://deno.land/x/aleph/cli.ts

I received an error for this. But got it to work by also including the --unstable flag.

About7Sharks avatar May 24 '22 18:05 About7Sharks

deno install --name=aleph -Ar -f https://deno.land/x/aleph/cli.ts

I received an error for this. But got it to work by also including the --unstable flag.

What system are you using? Can you share the error? I can install with deno install --name=aleph -Ar -f https://deno.land/x/aleph/cli.ts.

linbingquan avatar May 25 '22 14:05 linbingquan

deno install --name=aleph -Ar -f https://deno.land/x/aleph/cli.ts

I received an error for this. But got it to work by also including the --unstable flag.

try clearing deno cache

talentlessguy avatar Dec 16 '22 13:12 talentlessguy