R360 Design INC via talk wrote: > Hi, Was wondering if we could squeeze in a question about Python > installation on OS X on this thread: > > To set up Python on Mac, we were advised to install the latest version > of Python 3.6.4 and PIP3 (According to the Hitchhiker's Guide to > Python http://docs.python-guide.org/en/latest/starting/install3/osx/) > . The installation folder is: > > MacBook-Pro: which python3 > /usr/local/bin/python3 > > > However, when we checked the package list, the packages are still > pointed at the Python 2.7 packages folder (the native version of > Python that ships with Mac). Is this correct or we need to re-install > the packages for Python 3.6.4 using PIP3? > > MacBook-Pro:bin owner$ pip3 show pandas > Name: pandas > Version: 0.22.0 > Summary: Powerful data structures for data analysis, time series,and > statistics > Home-page: http://pandas.pydata.org > Author: The PyData Development Team > Author-email: [email protected] > License: BSD > Location: > /Library/Python/2.7/site-packages/pandas-0.22.0-py2.7-macosx-10.12-intel.egg > Requires: numpy, python-dateutil, pytz > MacBook-Pro:bin owner$ pip3 show six > Name: six > Version: 1.11.0 > Summary: Python 2 and 3 compatibility utilities > Home-page: http://pypi.python.org/pypi/six/ > Author: Benjamin Peterson > Author-email: [email protected] > License: MIT > Location: /Library/Python/2.7/site-packages
What does `pip3 --version` and `python3 -m pip show pip` show you? As an example mine shows: ``` $ pip3 --version pip 9.0.1 from /usr/local/lib/python3.6/site-packages (python 3.6) $ python3 -m pip show pip Name: pip Version: 9.0.1 Summary: The PyPA recommended tool for installing Python packages. Home-page: https://pip.pypa.io/ Author: The pip developers Author-email: [email protected] License: MIT Location: /usr/local/lib/python3.6/site-packages Requires: ``` I think pip for Python3 wasn't installed correctly. You might want to try reinstalled pip, <https://pip.pypa.io/en/stable/installing/> with python3. Also it's generally best practice when replying to a thread in a mailing list with a new topic to change the subject like I did above. It helps the archiving of the mailing list so people can better browse. --- Talk Mailing List [email protected] https://gtalug.org/mailman/listinfo/talk
