Using PyCharm with Homebrew Python installation
Python beginner here.
I've installed Homebrew because I need a specific library which I was only able to install with Homebrew. But how do I use the Homebrew Python version in PyCharm?
I think I need to change the venv here:
But what goes in there?
Please sign in to leave a comment.
Hi,
First, you must know the path to the required Python installation (Homebrew in your case).
Then, either create a new system interpreter and specify this path, or create a new virtualenv interpreter, and specify this path for the base interpreter.
Thanks, I've got it now.