Skip to main content

5 posts tagged with "pyenv"

View All Tags

Error Solved - pyenv python command not found

· 5 min read
Serhii Hrekov
software engineer, creator, artist, programmer, projects founder

The pyenv: python: command not found error occurs when pyenv is not properly configured to manage your Python versions. The solution is to ensure your shell's configuration files are correctly updated to point to pyenv's shims, which are small executable files that intercept commands like python and pip and redirect them to the correct Python version [4, 5].

Choosing the right Python environment and package management tool in 2025

· 7 min read
Serhii Hrekov
software engineer, creator, artist, programmer, projects founder

Choosing the right Python environment and package management tool in 2025 depends on your project's complexity and your team's workflow. The tools available can be categorized into two main groups: those that manage Python versions (pyenv, asdf) and those that manage project dependencies (venv, virtualenv, Poetry). Combining these tools is often the most effective approach.

Install pyenv on MacOs

· 6 min read
Serhii Hrekov
software engineer, creator, artist, programmer, projects founder

Homebrew is the recommended and easiest way to install pyenv on macOS, but you can install it without Homebrew by cloning the repository from GitHub. This method requires a few extra steps, including manually configuring your shell and installing dependencies.