Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv authored Mar 10, 2023
1 parent 4b94eba commit 7ab2f67
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,18 @@ The `pfx.dev` URLs are just shorthands for the URLs to the raw files on Github f

On Linux and macOS, this script downloads the micromamba release file and places it in `~/.local/bin`. The script then asks you if you want to perform "shell initialization". If yes, shell initialization will add a block to your `~/.bashrc` or `.zshrc` file. You can choose to do that later by executing `micromamba shell init`. Shell initialization is necessary to properly activate and deactivate virtual environments, however you can use micromamba without and use `micromamba run -n myenv` or `micromamba shell -n myenv` functions to run in or drop into virtual environments.

```
curl https://pfx.dev/micromamba/install.sh | bash
```bash
curl https://micromamba.pfx.dev/install.sh | bash

# or if you prefer `zsh`, it should work just as well

curl https://pfx.dev/micromamba/install.sh | zsh
curl https://micromamba.pfx.dev/install.sh | zsh
```

### Windows

On Windows, the executable `micromamba.exe` is installed into `%LocalAppData%\micromamba\micromamba.exe`.
On Windows, the executable `micromamba.exe` is installed into `$Env:LocalAppData\micromamba\micromamba.exe`.

```powershell
Invoke-Expression ((Invoke-WebRequest -Uri https://micromamba.pfx.dev/install.ps1).Content)
```
curl.exe https://pfx.dev/micromamba/install.ps1 | powershell.exe -ExecutionPolicy Bypass -
# or cmd.exe:
curl.exe https://pfx.dev/micromamba/install.bat | cmd.exe
```

0 comments on commit 7ab2f67

Please sign in to comment.