
macOS Catalina 10.15.1のpyenv環境でtkinterを利用するための設定(python 3.7.x系)
2019.11.13

MacにNode.jsのバージョンマネージャnodenvを導入する覚書
2019.02.03

MacでPython3 pyperclipを利用する際に日本語のコピペができない時の対処法
2019.01.15
Category WEB Tips Update 2019.02.03
nodenvのインストール
$ git clone git://github.com/nodenv/nodenv.git ~/.nodenv
node-buildのインストール
git clone git://github.com/nodenv/node-build.git ~/.nodenv/plugins/node-build
$ echo 'export PATH="$HOME/.nodenv/bin:$PATH"' >> ~/.bash_profile $ echo 'eval "$(nodenv init -)"' >> ~/.bash_profile
もしくは
.bash_profileに下記を追加
export PATH="$HOME/.nodenv/bin:$PATH" eval "$(nodenv init -)"
nodenv install --list
node-buildをインストールすると解決する。
nodenv install バージョン番号
$ nodenv global バージョン番号 もしくは $ nodenv local バージョン番号
node -v
$ nodenv uninstall バージョン番号