direnv I decided to use direnv to build an API server environment that communicates with the front React server on the internship. The advantage of using direnv is that you can use environment variables properly for each directory. This time I want to make python3.8 in the target directory, write the following in .envrc
layout python3
Now make sure that 3.8 is properly applied when doing python -v in this directory.
(reference) https://qiita.com/kompiro/items/5fc46089247a56243a62
Recommended Posts