diff --git a/lang/node.md b/lang/node.md index 207ca7a..b0280f8 100644 --- a/lang/node.md +++ b/lang/node.md @@ -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. diff --git a/lang/python.md b/lang/python.md index 79d46ed..3096679 100644 --- a/lang/python.md +++ b/lang/python.md @@ -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 Python comes with virtualenv support built in, use it with `.mise.toml` configuration like