VMWareWorkStationで立ち上げたばかりのCentoOSに以下のコマンドを順に実行してPythonをインストールしたところでエラーがでました。
実行ユーザーは最初に作ったyasueでやっています。
調べた権限は下記の通りです。
drwxr-xr-x. 3 root root 19 Dec 27 02:56 home
drwx------. 17 yasue yasue 4096 Dec 27 04:43 yasue
drwxr-xr-x. 12 root root 4096 Dec 27 04:26 .pyenv
.pyenv下にversionsディレクトリは見つかりませんでした。
コード実行履歴↓
visudo
Allow root to run any commands anywhere
yasue ALL=(ALL) ALL
sudo yum install gcc zlib-devel bzip2 bzip2-devel readline readline-devel sqlite sqlite-devel openssl openssl-devel git
sudo git clone https://github.com/yyuu/pyenv.git ~/.pyenv
vim .bash_profile
#pyenv
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init --path)"
source .bash_profile
env PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install 3.6.2
エラーコード↓
[yasue@localhost yasue]$ env PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install 3.6.3 Downloading Python-3.6.3.tar.xz... -> https:7//www.python.org/ftp/python/3.6.3/Python-3.6.3.tar.xz Installing Python-3.6.3... BUILD FAILED (CentOS Linux 7 using python-build 2.2.3-1-g423de9a) Inspect or clean up the working tree at /tmp/python-build.20211227050014.76023 Results logged to /tmp/python-build.20211227050014.76023.log Last 10 log lines: # version doesn't use the compiler customizations that are provided # in python (_osx_support.py). if test `uname -s` = Darwin; then \ cp python-config.py python-config; \ fi Creating directory /home/yasue/.pyenv/versions/3.6.3/bin /usr/bin/install: cannot create directory ‘/home/yasue/.pyenv/versions’: Permission denied Creating directory /home/yasue/.pyenv/versions/3.6.3/lib /usr/bin/install: cannot create directory ‘/home/yasue/.pyenv/versions’: Permission denied make: *** [altbininstall] Error 1
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/30 06:13