Why not login to Qiita and try out its useful features?

We'll deliver articles that match you.

You can read useful information later.

4
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Mac OS BigSurでPythonの環境構築をする

Posted at

Pythonでのローカル環境構築について

LINE APIを利用して、AWS API GateWay~Lambda〜S3への構築を行う際に、LambdaにPythonを利用してコードを書こうと思い立ち、まず環境構築からというところで躓きがあったので記述をしていきます。


構築前の状態(前提条件)

Macを利用しているので標準でPythonがインストールされていますが、バージョンが古いので、こちらを「3系」を利用できる様にしていきます。

*****@PC  % python --version
Python 2.7.16

先に記述するとOSを「Catalina」→「BigSur」にしたため、Pythonの最新バージョンをGetすることが出来ませんでした。

ちなみに「Homebrew」はRubyを学習したのでインストールが済んでいる状態です。

*****@PC  % brew -v
Homebrew 3.1.7
Homebrew/homebrew-core (git revision 0e20a3258c; last commit 2021-05-16)

Pyenv(パイエンブ)」ツールを利用してPythonをインストールする方法を考えて、状態を確認してみます。
下記のコマンドの通り、インストールされていないことが確認できます。

*****@PC  % pyenv -v
zsh: command not found: pyenv

Pyenv(パイエンブ)インストール

*****@PC  % brew install pyenv
Updating Homebrew...
--- 省略 ---

ちゃんとインストールされているか確認してみます

*****@PC  % pyenv -v
pyenv 1.2.27

パスを通す

*****@PC  % echo $SHELL
/bin/zsh
*****@PC  % echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.zshrc
*****@PC  % echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.zshrc
*****@PC  % echo 'eval "$(pyenv init -)"' >> ~/.zshrc
*****@PC  % source ~/.zshrc

Pythonのインストール

インストールしたPyenvを用いてPythonをインストールしていきます

*****@PC  % pyenv install --list
Available versions:
  2.1.3
--- 略 --- 

※ここで躓く!!

なんか「xcrun」となるもののパスが見当たらないみたい。

*****@PC  % pyenv install 3.9.0
python-build: use openssl from homebrew
python-build: use readline from homebrew
--- 中略 ---
checking whether the C compiler works... no
configure: error: in `/var/folders/3z/nrjs__rs3gl5l6_3qtkyt8240000gn/T/python-build.20210522115358.28038/Python-3.9.0':
configure: error: C compiler cannot create executables
See `config.log' for more details
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun

調べてみると、Xcodeの開発者ツールが見当たらなくなってしまっていることが原因とのことで、Mac OSをアップデートした時にあるあるネタということが分かる。


対処方法

下記のコマンドで「xcode」をインストールし直す

*****@PC % xcode-select --install
xcode-select: note: install requested for command line developer tools

※再び躓く!!

Buildが出来ないと出てしまっている。とりあえずググる。

*****@PC % pyenv install 3.9.0
python-build: use openssl from homebrew
python-build: use readline from homebrew
--- 中略 ---
BUILD FAILED (OS X 11.2.3 using python-build 20180424)
--- 中略 ---
Last 10 log lines:
./Modules/posixmodule.c:8210:15: error: implicit declaration of function 'sendfile' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
        ret = sendfile(in, out, offset, &sbytes, &sf, flags);
              ^
./Modules/posixmodule.c:10432:5: warning: code will never be executed [-Wunreachable-code]
    Py_FatalError("abort() called from Python code didn't abort!");
    ^~~~~~~~~~~~~
1 warning and 1 error generated.
make: *** [Modules/posixmodule.o] Error 1
make: *** Waiting for unfinished jobs....
1 warning generated.

対処方法

1.updateでHomebrewの各パッケージの情報をアップデート
2.upgradeでパッケージの更新
3.Zlibを利用するためインストールする
4.pythonのバージョンを切り替える
5.バージョン3.9.0をインストール

*****@PC ~ % brew update
*****@PC ~ % brew upgrade
*****@PC ~ % brew install pyenv zlib bzip2 readline
*****@PC ~ % eval "$(pyenv init -)"
*****@PC ~ % CPPFLAGS="-I$(brew --prefix openssl)/include -I$(brew --prefix bzip2)/include -I$(brew --prefix readline)/include -I$(brew --prefix zlib)/include" LDFLAGS="-L$(brew --prefix openssl)/lib -L$(brew --prefix readline)/lib -L$(brew --prefix zlib)/lib -L$(brew --prefix bzip2)/lib" pyenv install 3.9.0

結果

*****@PC ~ % pyenv versions
* system (set by /Users/*****/.pyenv/version)
  3.9.0
*****@PC ~ % pyenv global 3.9.0

バージョンを確認する

zshにパスを通して環境構築終了

*****@PC ~ % python --version
Python 2.7.16
*****@PC ~ % pyenv global 3.9.0
*****@PC ~ % zsh -l
*****@PC ~ % python --version
Python 3.9.0

さっそく次回からLambdaを利用して構築をしていきたいと思います。

4
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up

Comments

No comments

Let's comment your feelings that are more than good

4
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?