UPDATE: This is no longer necessary with Python3.4. It installs pip3 as part of the stock install.
I ended up posting this same question on the python mailing list, and got the following answer:
# download and install setuptools curl -O https://bootstrap.pypa.io/ez_setup.py python3 ez_setup.py # download and install pip curl -O https://bootstrap.pypa.io/get-pip.py python3 get-pip.py
Which solved my question perfectly. After adding the following for my own:
cd /usr/local/bin ln -s ../../../Library/Frameworks/Python.framework/Versions/3.3/bin/pip pip
So that I could run pip directly, I was able to:
# use pip to install pip install pyserial
or:
# Don't want it? pip uninstall pyserial
Related Posts:
- pip or pip3 to install packages for Python 3?
- Updating Python on Mac
- boto3 python 2.7 ImportError: No module named boto3 USER_BASE USER_SITE site packages doesn’t exist
- Python can’t find module NLTK
- How to install pip with Python 3?
- bash: pip: command not found
- bash: pip: command not found
- How to uninstall a package installed with pip install –user
- How to uninstall pip on OSX?
- ImportError: No module named pip
- ImportError: No module named pip
- How do I install pip on macOS or OS X?
- Pip freeze vs. pip list
- How do I install pip on macOS or OS X?
- How can I run python in terminal on a mac?
- How to install python3 version of package via pip on Ubuntu?
- Could not install packages due to an EnvironmentError:
- Could not find a version that satisfies the requirement tensorflow
- Could not find a version that satisfies the requirement tensorflow
- How to uninstall Python 2.7 on a Mac OS X 10.6.4?
- How do I upgrade to Python 3.6 with conda?
- Can’t fix “zipimport.ZipImportError: can’t decompress data; zlib not available” when I type in “python3.6 get-pip.py”
- import opencv vs import cv2
- How to change default Python version?
- ImportError: No module named sklearn (Python)
- bash: pip: command not found
- How to change default Python version?
- How to install pip3 on Windows?
- What version of Python is on my Mac?
- ModuleNotFoundError: No module named ‘matplotlib’
- How can I install Python’s pip3 on my Mac?
- What is the purpose of “pip install –user …”?
- ‘pip3’ is not recognized as an internal or external command, operable program or batch file
- How can I install Python’s pip3 on my Mac?
- How can I install a previous version of Python 3 in macOS using homebrew?
- python mpl_toolkits installation issue
- Pipenv: Command Not Found
- Pip – Fatal error in launcher: Unable to create process using ‘”‘
- ImportError: No module named ‘yaml’
- matplotlib: RuntimeError: Python is not installed as a framework
- Django Rest Framework — no module named rest_framework
- Python: source code string cannot contain null bytes
- pip throws TypeError: parse() got an unexpected keyword argument ‘transport_encoding’ when trying to install new packages
- Printing subscript in python
- Could not install packages due to an EnvironmentError: [Errno 13]
- Kill a python process
- Tkinter error: Couldn’t recognize data in image file
- How to install Openpyxl with pip
- How to install NumPy for Python 3.6
- Pip install on Mac OS gets error: command ‘/usr/bin/clang’ failed with exit code 1
- How to install PyQt4 on Windows using pip?
- How do I install pip on macOS or OS X?
- How to install PyQt4 on Windows using pip?
- SyntaxError: unexpected EOF while parsing
- How to use filter, map, and reduce in Python 3
- Use Gif Logo For Loading Screen In Kivy
- Praw & Discord.py: The bot keep sending the same meme. I want the bot to send different meme whenever it is asked
- How can I make a time delay in Python? [duplicate]
- Python – TypeError: ‘int’ object is not iterable
- Understanding the main method of python [duplicate]
- TypeError: only integer scalar arrays can be converted to a scalar index with 1D numpy indices array
- How do I update\upgrade pip itself from inside my virtual environment?
- How to open a file using the open with statement
- TypeError: only integer scalar arrays can be converted to a scalar index with 1D numpy indices array
- How do I update\upgrade pip itself from inside my virtual environment?
- Microsoft Visual C++ 14.0 is required (Unable to find vcvarsall.bat)
- What is the difference between rw+ and r+
- ‘pip’ is not recognized as an internal or external command
- How to update/upgrade a package using pip?
- Convert bytes to a string
- How do I update\upgrade pip itself from inside my virtual environment?
- How can I represent an ‘Enum’ in Python?
- Python – TypeError: ‘int’ object is not iterable
- Import Error: No module named numpy
- How to update/upgrade a package using pip?
- Python3 – ModuleNotFoundError: No module named ‘numpy’
- Relative imports – ModuleNotFoundError: No module named x
- Python: ‘ModuleNotFoundError’ when trying to import module from imported package
- Relative imports – ModuleNotFoundError: No module named x
- TypeError: a bytes-like object is required, not ‘str’ when writing to a file in Python3
- How do I upgrade the Python installation in Windows 10?
- How can I install packages using pip according to the requirements.txt file from a local directory?
- How to uninstall Anaconda completely from macOS
- not all arguments converted during string formatting.. NO % variables
- How do I use raw_input in Python 3
- Python Variable Declaration
- Relative imports in Python 3
- Relative imports in Python 3
- “pip install unroll”: “python setup.py egg_info” failed with error code 1
- working of \n in python [duplicate]
- How can I install pip on Windows?
- Best way to convert string to bytes in Python 3?
- “pip install unroll”: “python setup.py egg_info” failed with error code 1
- ImportError: No module named tensorflow
- Best way to convert string to bytes in Python 3?
- What does the list() function do in Python?
- TypeError: not all arguments converted during string formatting python
- PermissionError: [Errno 13] Permission denied
- What is setup.py?
- How is Anaconda related to Python?