Mac上のpython3。しばらく前にhomebrewと一緒に削除してしまったので入れ直した。

$ brew install python3

 

$ which python3
/usr/local/bin/python3

$ python3 -V
Python 3.9.7

$ pip3 -V
pip 21.2.4 from /usr/local/lib/python3.9/site-packages/pip (python 3.9)

 

pythonだけで実行するとゴニョゴニョ言われる。

$ python
Your PYTHONPATH points to a site-packages dir for Python 3.x but you are running Python 2.x!
     PYTHONPATH is currently: "/usr/local/lib/python3.9/site-packages:"
     You should `unset PYTHONPATH` to fix this.

$ unset PYTHONPATH

 

で、この後pythonを実行すると2系になってしまう。

$ python
WARNING: Python 2.7 is not recommended. 
This version is included in macOS for compatibility with legacy software. 
Future versions of macOS will not include Python 2.7. 
Instead, it is recommended that you transition to using 'python3' from within Terminal.

Python 2.7.16 (default, Aug 30 2021, 14:43:11) 
[GCC Apple LLVM 12.0.5 (clang-1205.0.19.59.6) [+internal-os, ptrauth-isa=deploy on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 

 

python3を実行するにはpython3とタイプ。

$ python3
Python 3.9.7 (default, Oct 13 2021, 06:45:31) 
[Clang 13.0.0 (clang-1300.0.29.3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 

 

boto3が消えていたのでこれも再インストールした。

$ pip3 install boto3

$ pip3 freeze
boto3==1.18.63
botocore==1.21.63
Jinja2==2.11.2
jmespath==0.10.0
MarkupSafe==1.1.1
python-dateutil==2.8.2
PyYAML==5.3.1
s3transfer==0.5.0
six==1.16.0
urllib3==1.26.7

 

全く無関係に在りし日の記録。(2019年)

 

RWC2019 RWC2019 RWC2019 RWC2019 RWC2019

 

はるばるアルゼンチンから、こんなに大勢の人が日本に来てくれたんだよ、あの頃は。


関連がありそうな記事