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 参考: How to install pip for Python 3 on Mac OS X...
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 参考: How to install pip for Python 3 on Mac OS X? https://www.it13...
This error occurs because Python can’t find thepyserialpackage in the current environment. Thepyserialpackage is not a built-in Python package, so you need to install it before using it. To see if you have thepyserialpackage installed, you can run thepip show pyserialcommand from the termina...