since 2023-05-29
Python パッケージ管理ツール
https://rye-up.com/guide/installation/
https://github.com/mitsuhiko/rye
https://nsakki55.hatenablog.com/entry/2023/05/29/013658
% rye init hello-rye % cd hello-rye % rye sync % rye run python Python 3.11.3 (main, May 7 2023, 17:39:14) [Clang 16.0.3 ] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import hello_rye >>> hello_rye.hello() 'Hello from hello-rye!' >>>