Last active
August 9, 2017 15:59
-
-
Save kashewnuts/aca8a9826e2843a130cfc0cfdbe0a6eb to your computer and use it in GitHub Desktop.
Python & pipコマンド一覧
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kashewnuts@kashew-mbp:~$ | |
python | |
python python2.6-config python3-config python3.5m-config pythonw | |
python-config python2.7 python3.5 python3.6 pythonw2 | |
python2 python2.7-config python3.5-32 python3.6-config pythonw2.6 | |
python2-config python3 python3.5-config python3.6m pythonw2.7 | |
python2.6 python3-32 python3.5m python3.6m-config | |
kashewnuts@kashew-mbp:~$ | |
python -V | |
Python 2.7.10 | |
kashewnuts@kashew-mbp:~$ | |
python2 -V | |
Python 2.7.13 | |
kashewnuts@kashew-mbp:~$ | |
python2.6 -V | |
Python 2.6.9 | |
kashewnuts@kashew-mbp:~$ | |
python2.7 -V | |
Python 2.7.13 | |
kashewnuts@kashew-mbp:~$ | |
python3 -V | |
Python 3.6.2 | |
kashewnuts@kashew-mbp:~$ | |
python3.5 -V | |
Python 3.5.3 | |
kashewnuts@kashew-mbp:~$ | |
python3.6 -V | |
Python 3.6.2 | |
kashewnuts@kashew-mbp:~$ | |
pip | |
pip pip2 pip2.7 pip3 pip3.5 pip3.6 | |
kashewnuts@kashew-mbp:~$ | |
pip -V | |
pip 9.0.1 from /usr/local/lib/python2.7/site-packages (python 2.7) | |
kashewnuts@kashew-mbp:~$ | |
pip2 -V | |
pip 9.0.1 from /usr/local/lib/python2.7/site-packages (python 2.7) | |
kashewnuts@kashew-mbp:~$ | |
pip3 -V | |
pip 9.0.1 from /usr/local/lib/python3.6/site-packages (python 3.6) | |
kashewnuts@kashew-mbp:~$ | |
pip3.5 -V | |
pip 9.0.1 from /Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages (python 3.5) | |
kashewnuts@kashew-mbp:~$ | |
pip3.6 -V | |
pip 9.0.1 from /usr/local/lib/python3.6/site-packages (python 3.6) | |
kashewnuts@kashew-mbp:~$ | |
which python | |
/usr/bin/python | |
kashewnuts@kashew-mbp:~$ | |
which python2 | |
/usr/local/bin/python2 | |
kashewnuts@kashew-mbp:~$ | |
which python2.6 | |
/usr/bin/python2.6 | |
kashewnuts@kashew-mbp:~$ | |
which python2.7 | |
/usr/local/bin/python2.7 | |
kashewnuts@kashew-mbp:~$ | |
which python3 | |
/usr/local/bin/python3 | |
kashewnuts@kashew-mbp:~$ | |
which python3.5 | |
/usr/local/bin/python3.5 | |
kashewnuts@kashew-mbp:~$ | |
which python3.6 | |
/usr/local/bin/python3.6 | |
kashewnuts@kashew-mbp:~$ | |
which pip | |
/usr/local/bin/pip | |
kashewnuts@kashew-mbp:~$ | |
which pip2 | |
/usr/local/bin/pip2 | |
kashewnuts@kashew-mbp:~$ | |
which pip3 | |
/usr/local/bin/pip3 | |
kashewnuts@kashew-mbp:~$ | |
which pip3.5 | |
/usr/local/bin/pip3.5 | |
kashewnuts@kashew-mbp:~$ | |
which pip3.6 | |
/usr/local/bin/pip3.6 | |
kashewnuts@kashew-mbp:~$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment