[PYTHON] Installez pip et pandas avec Ubuntu ou VScode

Pip dans le terminal VScode

PS C:\Users\TEST_USER\MyShell> python -m pip install pandas
PS C:\Users\TEST_USER\MyShell> pip install scipy
Collecting scipy
  Downloading scipy-1.5.1-cp38-cp38-win_amd64.whl (31.4 MB)
     |████████████████████████████████| 31.4 MB 152 kB/s 
Requirement already satisfied: numpy>=1.14.5 in c:\users\test_user\appdata\local\programs\python\python38\lib\site-packages (from scipy) (1.18.2)
Installing collected packages: scipy
Successfully installed scipy-1.5.1

Pip sur Ubuntu (échec)

user_name@DESKTOP-3128479:/mnt/c/Users/TEST_USER/MyShell$ pip install pandas

Command 'pip' not found, but there are 18 similar ones.

user_name@DESKTOP-3128479:/mnt/c/Users/TEST_USER/MyShell$ python3 -m pip freeze
/usr/bin/python3: No module named pip
user_name@DESKTOP-3128479:/mnt/c/Users/TEST_USER/MyShell$ python3
Python 3.8.2 (default, Mar 13 2020, 10:14:16)
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pandas
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'pandas'
>>>

Installer la commande pip sur Ubuntu

URL de référence https://qiita.com/HiroRittsu/items/e58063fb74d799d37cc4 Suivez cette procédure.

user_name@DESKTOP-3128479:/mnt/c/Users/TEST_USER/MyShell$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 1825k  100 1825k    0     0   242k      0  0:00:07  0:00:07 --:--:--  412k
user_name@DESKTOP-3128479:/mnt/c/Users/TEST_USER/MyShell$ sudo python3 get-pip.py
Collecting pip
  Downloading pip-20.1.1-py2.py3-none-any.whl (1.5 MB)
     |████████████████████████████████| 1.5 MB 1.0 MB/s
Collecting wheel
  Downloading wheel-0.34.2-py2.py3-none-any.whl (26 kB)
Installing collected packages: pip, wheel
Successfully installed pip-20.1.1 wheel-0.34.2

Confirmez l'installation du pip.

user_name@DESKTOP-3128479:/mnt/c/Users/TEST_USER/MyShell$ python3 -m pip list | grep pip
pip                    20.1.1
user_name@DESKTOP-3128479:/mnt/c/Users/TEST_USER/MyShell$ python3
Python 3.8.2 (default, Mar 13 2020, 10:14:16)
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pandas
>>>

Installer des pandas

user_name@DESKTOP-3128479:/mnt/c/Users/TEST_USER/MyShell$ pip install pandas
Defaulting to user installation because normal site-packages is not writeable
Collecting pandas
  Downloading pandas-1.0.5-cp38-cp38-manylinux1_x86_64.whl (10.0 MB)
     |████████████████████████████████| 10.0 MB 1.4 MB/s
Collecting pytz>=2017.2
  Downloading pytz-2020.1-py2.py3-none-any.whl (510 kB)
     |████████████████████████████████| 510 kB 2.5 MB/s
Collecting python-dateutil>=2.6.1
  Downloading python_dateutil-2.8.1-py2.py3-none-any.whl (227 kB)
     |████████████████████████████████| 227 kB 1.3 MB/s
Collecting numpy>=1.13.3
  Downloading numpy-1.19.0-cp38-cp38-manylinux2010_x86_64.whl (14.6 MB)
     |████████████████████████████████| 14.6 MB 540 kB/s
Requirement already satisfied: six>=1.5 in /usr/lib/python3/dist-packages (from python-dateutil>=2.6.1->pandas) (1.14.0)Installing collected packages: pytz, python-dateutil, numpy, pandas
  WARNING: The scripts f2py, f2py3 and f2py3.8 are installed in '/home/user_name/.local/bin' which is not on PATH.
  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed numpy-1.19.0 pandas-1.0.5 python-dateutil-2.8.1 pytz-2020.1

URL de référence

https://qiita.com/HiroRittsu/items/e58063fb74d799d37cc4

Recommended Posts

Installez pip et pandas avec Ubuntu ou VScode
Dask ne peut pas être installé sur Ubuntu avec pip
Erreur avec l'installation de pip
Installez pip / pip3 sur Ubuntu
Installez scikit.learn avec pip
Installez Ubuntu 20.04 avec GUI et préparez l'environnement de développement
Traitement de pip et des erreurs d'installation associées sur Ubuntu 18.04
Installez tweepy avec pip et utilisez-le pour l'API 1.1
Lorsque la mousse avec pip installer
Installez le référentiel github avec pip
Installer python3 et autour de la bibliothèque de calcul scientifique sur Ubuntu (virtualenv + pip)
Installez CaboCha dans l'environnement Ubuntu et appelez-le avec Python.
Installez Mecab et mecab-python3 sur Ubuntu 14.04
Installez et exécutez Dropbox sur Ubuntu 20.04
Installez OpenCV et Chainer sur Ubuntu
Installez CUDA 8.0 et Chainer sur Ubuntu 16.04
Autorisation refusée avec pip install pyopenssl
Installez le fabric sur Ubuntu et essayez
Comment installer mysql-connector avec pip3
Installez easy_install et pip sur Windows
Comment installer des pandas sur EC2 (Comment gérer MemoryError et PermissionError)
Certificat SSL lié à l'installation de pip? Erreur
À propos de la gestion des packages avec conda et pip
Installation de Python et gestion des packages avec pip
sélénium: attendre l'élément avec ET / OU
Que diriez-vous de créer un environnement virtuel avec Anaconda et de faire une installation pip?
Je veux installer Python avec PythonAnywhere
Installer en spécifiant la version avec pip
Si scipy est python 2.7.8, l'installation de pip trébuche
Mesures pour ne pas être en mesure d'installer ou d'importer ssl avec pycharm
Installez Puppet Master and Client sur Ubuntu 16.04
Le jour 64 de l'installation de pip tensorflow 2.0 est arrivé.
Installez pyenv et Python 3.6.8 sur Ubuntu 18.04 LTS
Chargez CSV avec des pandas et jouez avec Index
Lisez CSV et analysez avec Pandas et Seaborn
Je ne peux pas installer le package avec pip.
Installons box2d-py avec l'environnement pip de Windows 10
Éviter «le codec 'ascii' ne peut pas décoder» avec pip install
Installez OpenCV 4.0 et Python 3.7 sur Windows 10 avec Anaconda
Implémentez "Data Visualization Design # 3" avec pandas et matplotlib
Analysez les journaux d'accès Apache avec Pandas et Matplotlib
Visualisez de manière interactive les données avec Treasure Data, Pandas et Jupyter.
Exécutez l'installation de pip sur MacOS Python 3.7 ou version ultérieure
[Ubuntu] Installez Android Studio et créez un raccourci
Installez MongoDB sur Ubuntu 16.04 et utilisez python
Installez la version ZIP Python et pip sur Windows 10
Étapes pour installer votre propre bibliothèque avec pip
installation sudo pip
J'ai eu une erreur lorsque j'installe des pandas sur Mac, alors je l'ai traitée
pip install ○○○ error La commande a échoué avec l'état de sortie 1:
Construisez un RAID intégré avec T1310M3 et installez Cent OS 7.7
Installez le sélénium sur votre Mac et essayez-le avec python
Installez Apache 2.4 sur Ubuntu 19.10 Eoan Ermine et exécutez CGI
J'ai un UnicodeDecodeError lorsque je pip installé sur ubuntu
Comment extraire des valeurs Null et des valeurs non Null avec des pandas
Développé en installant Git, VSCode, Docker sur Chrome OS