[PYTHON] Installieren Sie pip, pyenv, BeautifulSoup4

Ich lese "Web Scraping mit Python".

Web-Scraping mit Python https://www.amazon.co.jp/dp/4873117615/ref=cm_sw_r_tw_dp_x_r1spzbAV22VJX

Um dieses Buch zu üben, müssen Python und BeautifulSoup4 installiert werden. Ein Memorandum des Installationsvorgangs.

install pip

$ wget https://bootstrap.pypa.io/get-pip.py
$ python get-pip.py

install pyenv

$ git clone https://github.com/yyuu/pyenv.git ~/.pyenv

PATH setting for pyenv

add the below to ~/.bash_profile

export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"

reload bashrc

$ source ~/.bashrc

install specific python version via pyenv

$ pyenv --version
pyenv 1.0.10-24-gacbd736

# show installable version list
$ pyenv install --list
...
  stackless-3.3.5
  stackless-3.4.1
  stackless-3.4.2

# install specific version from the installable version list
$ pyenv install {version}

# set the version as global
$ pyenv global {version}

$ pyenv version
{version} (set by /home/uorat/.pyenv/version)

# make sure the python version
$ python -V
Python {version}

install beautifulsoup4

$ pip install beautifulsoup4

make sure to complete installing BeautifulSoup

$ python
>>> from bs4 import BeautifulSoup

completed if no error occurs!

Dieser Artikel wurde aus meinem Blog nachgedruckt http://tic40.hatenablog.com/entry/2017/05/31/103459

Recommended Posts

Installieren Sie pip, pyenv, BeautifulSoup4
sudo pip installieren
Installieren Sie pyenv auf dem Mac
Installieren Sie pip auf Mavericks
Installieren Sie pyenv und pyenv-virtualenv
So installieren Sie pip
Fehler bei der Pip-Installation
Installieren Sie Python (pyenv, pyenv-virtualenv)
Installieren Sie den Befehl pip
Installieren Sie Python mit pyenv
Installieren Sie pyenv unter OSX
Installiere pip / pip3 unter Ubuntu
Installieren Sie scikit.learn mit pip
Wenn die Pip-Installation fehlschlägt
[CentOS7] Installieren Sie Anaconda mit Pyenv
Wenn Moos mit Pip installieren
Pip-Installation in einer Proxy-Umgebung
Wenn pyenv BUILD FAILED installiert
Installieren Sie das Github-Repository mit pip
Pip installiert das GitHub-Repository
Installieren Sie pyenv von Homebrew, installieren Sie Python von pyenv
Installieren Sie Python 2.7.9 und Python 3.4.x mit pip.
Pip-Installation (Windows) unter Proxy-Umgebung
Pip install --ugrade pip schlägt unter Windows fehl
Berechtigung mit pip install pyopenssl verweigert
Modulinstallation, wenn die Pip-Installation nicht erfolgreich ist
Installieren Sie Python unter Windows + pip + virtualenv
pip install mysql-Handling Fehler während Python
Beheben Sie den durch die Installation von pyenv verursachten Fehler
Die Installation von pip verhindert, dass der Proxy installiert wird
Installieren Sie pip unter CentOS7. Auch iPython.
Installieren Sie Python unter CentOS mit Pyenv
Installieren Sie das Python Framework Django mit pip
So installieren Sie den MySQL-Connector mit pip3
Ansible Playbook zum Installieren und Konfigurieren von `pyenv`
Installieren Sie python2.x mit pyenv auf Catalina
Proxy-Fehler beim Ausführen von "pip install"
Wget schlägt während der Installation mit pyenv fehl
Installieren Sie Python unter CentOS mit pyenv
So installieren Sie Anaconda mit pyenv
Installieren Sie easy_install und pip unter Windows
SSL-Zertifikat im Zusammenhang mit der Pip-Installation? Error
Installieren Sie Python als Framework mit pyenv
Beschleunigen Sie CI, indem Sie unnötige Pip-Installationen überspringen
Lösung für Pip-Installationsfehler [Python] [Mac]
In pip install clang: error: unbekanntes Argument: '- mno-fused-madd'
`pip install pygraphviz` findet graphviz nicht
Ich war süchtig danach, mysqlclient zu installieren
Ich möchte eine Pip-Installation mit PythonAnywhere durchführen
Installieren Sie, indem Sie die Version mit pip angeben
Installieren des Python-Paketverwaltungstools pip (Windows)
Installieren Sie Python auf xserver, um pip zu verwenden
Tag 64 Pip Install Tensorflow 2.0 ist da.
Ich habe gerade pyrebase installiert ... (UnicodeDecodeError)
Installieren Sie pyenv und Python 3.6.8 unter Ubuntu 18.04 LTS
Installieren Sie Python 3.8, Pip 3.8 auf EC2 (Amazon Linux 2)