homebrew

Python not showing correct version on Mac OSX

Python not showing correct version on Mac OSX Question: I am trying to update Python to 3.7.4 on my Mac. Currently when I type python3 –version, it shows that I have Python 3.7.3 I have tried to update using just the standalone installer from the website as well as homebrew but even through all of …

Total answers: 4

How can I install Anaconda aside an existing pyenv installation on OSX?

How can I install Anaconda aside an existing pyenv installation on OSX? Question: Sincerest apologies if this is easily found elsewhere, but although I found a number of posts with pyenv and Anaconda explanations, none addressed this issue specifically. However, I am often an idiot. On Mac OSX (Mojave 10.14.6) I installed pyenv via Homebrew …

Total answers: 4

how to uninstall pyenv(installed by homebrew) on Mac

how to uninstall pyenv(installed by homebrew) on Mac Question: I used to install pyenv by homebrew to manage versions of python, but now, I want to use anaconda.But I don’t know how to uninstall pyenv.Please tell me. Asked By: David Chan || Source Answers: Try removing it using the following command: brew remove pyenv Answered …

Total answers: 3

How can I install a previous version of Python 3 in macOS using homebrew?

How can I install a previous version of Python 3 in macOS using homebrew? Question: How can I install a previous version of Python 3 in macOS using brew? With the command brew install python I got the latest version of Python 3 (currently v3.7.0), but I want the last version of Python 3.6 (currently …

Total answers: 8

Where is the .profile file on mac?

Where is the .profile file on mac? Question: I have a MacBook Pro 13` inch (without touch bar) and it is running mac os sierra. I have installed Xcode, command line tools and homebrew. Now I want to install python 3 and make it a default interpreter when calling it from the terminal. I have …

Total answers: 5

Make python3 as my default python on Mac

Make python3 as my default python on Mac Question: What I’m trying to do here is to make python3 as my default python. Except the python 2.7 which automatically installed on mac, I installed python3 with homebrew. This is the website that I’m following. http://docs.python-guide.org/en/latest/starting/install3/osx/#install3-osx I guess I followed every instruction well, got xcode freshly …

Total answers: 4

pip3: command not found

pip3: command not found Question: I want to install TensorFlow following these instructions: https://web.archive.org/web/20170627102751/https://www.tensorflow.org/versions/r0.12/get_started/os_setup#pip_installation But when I try this code on terminal, it returns an error. $ sudo pip3 install –upgrade $TF_BINARY_URL sudo: pip3: command not found So I installed Homebrew and tried to uninstall and reinstall python3-pip, but didn’t work. MakotonoMacBook-ea:~ makotomiyazaki$ brew uninstall …

Total answers: 8

brew install python3 didn't install pip3

brew install python3 didn't install pip3 Question: I installed python3 using homebrew but it didn’t install pip3 or should I say it installed but it doesn’t recognize the command ? Here is what I did: brew install python3 This installed python3 but threw an error at the end saying it couldn’t link python3 and prompted …

Total answers: 6

Pip install pygraphviz fails: Failed building wheel for pygraphviz

Pip install pygraphviz fails: Failed building wheel for pygraphviz Question: I have troubles installing pygraphviz on macOS 10.10.5. I have a fully functional installation of Python 2.7.x, and I’d like to run the test example of queueing-tool, which requires installing pygraphviz using pip. When executing the command pip install pygraphviz, I get the following lengthy …

Total answers: 4

How to link PyCharm with PySpark?

How to link PyCharm with PySpark? Question: I’m new with apache spark and apparently I installed apache-spark with homebrew in my macbook: Last login: Fri Jan 8 12:52:04 on console user@MacBook-Pro-de-User-2:~$ pyspark Python 2.7.10 (default, Jul 13 2015, 12:05:58) [GCC 4.2.1 Compatible Apple LLVM 6.1.0 (clang-602.0.53)] on darwin Type “help”, “copyright”, “credits” or “license” for …

Total answers: 17