Macでbrewしているときのメモ
MacOSでのインストールメモの作業メモ
インストール時に出てきた環境変数関係のメッセージの記録.
—
brew install pyenv
—
If you need to have openssl@1.1 first in your PATH run:
echo ‘export PATH=”/usr/local/opt/openssl@1.1/bin:$PATH”‘ >> ~/.zshrcFor compilers to find openssl@1.1 you may need to set:
export LDFLAGS=”-L/usr/local/opt/openssl@1.1/lib”
export CPPFLAGS=”-I/usr/local/opt/openssl@1.1/include”For compilers to find readline you may need to set:
export LDFLAGS=”-L/usr/local/opt/readline/lib”
export CPPFLAGS=”-I/usr/local/opt/readline/include”For pkg-config to find readline you may need to set:
export PKG_CONFIG_PATH=”/usr/local/opt/readline/lib/pkgconfig”If you need to have openssl@1.1 first in your PATH run:
echo ‘export PATH=”/usr/local/opt/openssl@1.1/bin:$PATH”‘ >> ~/.zshrcFor compilers to find openssl@1.1 you may need to set:
export LDFLAGS=”-L/usr/local/opt/openssl@1.1/lib”
export CPPFLAGS=”-I/usr/local/opt/openssl@1.1/include”For pkg-config to find openssl@1.1 you may need to set:
export PKG_CONFIG_PATH=”/usr/local/opt/openssl@1.1/lib/pkgconfig”For compilers to find readline you may need to set:
export LDFLAGS=”-L/usr/local/opt/readline/lib”
export CPPFLAGS=”-I/usr/local/opt/readline/include”For pkg-config to find readline you may need to set:
export PKG_CONFIG_PATH=”/usr/local/opt/readline/lib/pkgconfig”
—
brew install python3
—
If you need to have sqlite first in your PATH run:
echo ‘export PATH=”/usr/local/opt/sqlite/bin:$PATH”‘ >> ~/.zshrcFor compilers to find sqlite you may need to set:
export LDFLAGS=”-L/usr/local/opt/sqlite/lib”
export CPPFLAGS=”-I/usr/local/opt/sqlite/include”For pkg-config to find sqlite you may need to set:
export PKG_CONFIG_PATH=”/usr/local/opt/sqlite/lib/pkgconfig”If you need to have sqlite first in your PATH run:
echo ‘export PATH=”/usr/local/opt/sqlite/bin:$PATH”‘ >> ~/.zshrcFor compilers to find sqlite you may need to set:
export LDFLAGS=”-L/usr/local/opt/sqlite/lib”
export CPPFLAGS=”-I/usr/local/opt/sqlite/include”For pkg-config to find sqlite you may need to set:
export PKG_CONFIG_PATH=”/usr/local/opt/sqlite/lib/pkgconfig”
コメントを残す