Issue after install of python with pyenv and linking into /usr/local/Cellar/[email protected]/3.97 #2064
-
I am trying to switch to Main question is will this be a problem for brew packages that rely on a version of python install by brew? Pyenv says to use Homebrew to install In any case the one error comes when I run
my environment in .bash_profile
symlink working
my paths
$brew config
result of
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Looks unrelated to Pyenv so far. The failing test checks that Tkinter cannot be imported. If not, could you install the |
Beta Was this translation helpful? Give feedback.
-
@native-api @jprokos if I have pyenv installed (installed via brew) ... > pyenv
pyenv 2.2.0
Usage: pyenv <command> [<args>]
> which python
/Users/ryanefendy/.pyenv/shims/python
> pyenv versions
system
* 3.10.0 (set by /Users/ryanefendy/.pyenv/version) and when I run > brew doctor
Please note that these warnings are just used to help the Homebrew maintainers
with debugging if you file an issue. If everything you use Homebrew for is
working fine: please don't worry or file an issue; just ignore this. Thanks!
Warning: A newer Command Line Tools release is available.
Update them from Software Update in System Preferences or run:
softwareupdate --all --install --force
If that doesn't show you any updates, run:
sudo rm -rf /Library/Developer/CommandLineTools
sudo xcode-select --install
Alternatively, manually download them from:
https://developer.apple.com/download/all/.
You should download the Command Line Tools for Xcode 13.0.
Warning: "config" scripts exist outside your system or Homebrew directories.
`./configure` scripts often look for *-config scripts to determine if
software packages are installed, and which additional flags to use when
compiling and linking.
Having additional scripts in your path can confuse software installed via
Homebrew if the config script overrides a system or Homebrew-provided
script of the same name. We found the following "config" scripts:
/Users/ryanefendy/.pyenv/shims/python3.10-config
/Users/ryanefendy/.pyenv/shims/python-config
/Users/ryanefendy/.pyenv/shims/python3-config
Warning: Some installed formulae are missing dependencies.
You should `brew install` the missing dependencies:
brew install [email protected] [email protected]
Run `brew missing` for more details. |
Beta Was this translation helpful? Give feedback.
Looks unrelated to Pyenv so far.
The failing test checks that Tkinter cannot be imported.
Do you also have
[email protected]
installed? If yes, this test will fail.If not, could you install the
[email protected]
formula and runimport tkinter
yourself to see where it gets the module from?