Skip to content
This repository was archived by the owner on Jun 1, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lang/node.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ required system dependencies.
mise-node can automatically install a default set of npm packages right after installing a node version. To enable this feature, provide a `$HOME/.default-npm-packages` file that lists one package per line, for example:

```text
lodash
request
express
@angular/cli
mocha
typescript-language-server
```

You can specify a non-default location of this file by setting a `MISE_NODE_DEFAULT_PACKAGES_FILE` variable.
Expand Down
8 changes: 8 additions & 0 deletions lang/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,14 @@ CFLAGS="-I$(brew --prefix openssl)/include" \
brew link pkg-config
```

## Setting Up PyCharm to Use the Appropriate Base Python on macOS

To instruct PyCharm to prioritize your Python3 installation over the system's Python install, you can execute the command below:

```sh
sudo ln -s ~/.local/share/mise/installs/python/3/bin/python3 /usr/local/bin/python3
```

## Automatic virtualenv activation <Badge type="warning" text="experimental" />

Python comes with virtualenv support built in, use it with `.mise.toml` configuration like
Expand Down