Je veux installer Python3 sur CentOS7 et utiliser pip3.
Bien sûr, vous ne pouvez pas utiliser la commande pip3.
bash: pip3: command not found
python -V Quand tu frappes
Python 2.7.5
Est affiché.
python3.6 -V Quand tu frappes
bash: python3.6: command not found
Est affiché.
Exécutez simplement ce qui suit en tant que root.
yum install python3
Entrez ensuite y,
Installed:
python3.x86_64 0:3.6.8-17.el7
Dependency Installed:
libtirpc.x86_64 0:0.2.4-0.16.el7 python3-libs.x86_64 0:3.6.8-17.el7 python3-pip.noarch 0:9.0.3-8.el7 python3-setuptools.noarch 0:39.2.0-10.el7
Complete!
S'affiche, c'est réussi.
python3.6 -V Quand tu frappes
Python 3.6.8
Est affiché et OK.
pip3 Quand tu frappes
Usage:
pip <command> [options]
Est affiché et OK. La commande pip3 est maintenant disponible.
Recommended Posts