This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-04-12
Channels
- # announcements (76)
- # babashka (10)
- # beginners (39)
- # biff (2)
- # calva (51)
- # chlorine-clover (8)
- # cider (6)
- # clj-kondo (15)
- # clj-on-windows (13)
- # cljdoc (26)
- # cljs-dev (8)
- # clojure (196)
- # clojure-austin (17)
- # clojure-europe (36)
- # clojure-nl (4)
- # clojure-spec (8)
- # clojure-uk (2)
- # clojurescript (18)
- # community-development (4)
- # conjure (1)
- # core-typed (38)
- # cursive (5)
- # datalevin (17)
- # datomic (25)
- # docker (1)
- # events (2)
- # interop (2)
- # jobs (4)
- # kaocha (28)
- # lsp (22)
- # nyc (1)
- # off-topic (10)
- # pedestal (1)
- # portal (22)
- # re-frame (22)
- # react (10)
- # shadow-cljs (19)
- # spacemacs (7)
- # tools-deps (11)
- # vim (14)
- # xtdb (7)
@spapas did you check the linked document? https:/go.microsoft.com/fwlink/?LinkID=135170
I get
Get-ExecutionPolicy -List
Scope ExecutionPolicy
----- ---------------
MachinePolicy Undefined
UserPolicy Undefined
Process Undefined
CurrentUser RemoteSigned
LocalMachine Unrestricted
@thheller i was actually able to install it using this project https://github.com/borkdude/deps.clj
however i understand that clj does not create new projectt so i ended up using lein anyway
@spapas There's https://github.com/seancorfield/clj-new for the CLI/`deps.edn` which is based on lein new
, and https://github.com/seancorfield/deps-new which is the simpler, newer version based solely on clojure.tools.build
-- feel free to ask Qs in #deps-new about either of those.
Note that since you're on Windows, you'll run into the weird quoting issues described in https://clojure.org/reference/deps_and_cli#quoting
(my recommendation for Windows users is to use WSL2, if possible, so you can just follow all the normal macOS/Linux instructions for all Clojure tools -- only about 5% of Clojure developers use Windows with Powershell)
Thank you !
I'm one of the few that use cmd.exe :(
You'll find life difficult with Clojure -- all the books and tutorials assume macOS/Linux and a lot of tooling and libraries won't work on cmd/PS (or won't work directly "as documented").
Seriously consider adding WSL2 and using bash
instead -- it will make your Clojure journey a lot easier. VS Code understands WSL2 so you can use it natively on Windows, even with all your files on WSL2. That's my setup.
Thanks I'll keep it in my mind next time I hit a wall!