From 538a4bbc1bfb2c243d547bec66aaac70173800b5 Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Mon, 13 Jun 2022 06:44:44 +0200 Subject: [PATCH] automamba: update readme --- automamba/README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/automamba/README.md b/automamba/README.md index e69de29..ec3e7d5 100644 --- a/automamba/README.md +++ b/automamba/README.md @@ -0,0 +1,18 @@ +only works on Windows right now. + +### examples + +* `automamba --create` + create a new environment. do this once in a while to keep your packages up to date. +* `automamba hello.py` + invoke python to execute a local python file. + a new environment will be created if none have been made. +* `automamba --pip install scipybiteopt==1.2` + invoke pip to build and install a package. MSVC will be installed if it isn't already, + since this example requires a C++ compiler. +* `automamba --mamba repoquery depends pip` + invoke mamba to look up dependencies. +* `automamba --wheel` + execute `./setup.py` with `bdist_wheel` as an argument. + this configures environment variables similarly to the `--pip` command. + (this command will probably be removed in the near future)