Construction de l'environnement Python

procédure

  1. Installez pyenv
  2. Installez python
  3. Installation de virtualenv
  4. Installation d'anaconda
  5. Construction d'un environnement virtuel
  6. Définissez l'environnement virtuel comme répertoire de travail
  7. Exécution du script

1. Installez pyenv

pyenv: outil de gestion de version python

$ brew install pyenv
$ pyenv --version
$ echo 'if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi' >> ~/.bash_profile

2. Installez python

$ pyenv install -l
$ pyenv install [Installation ver]
$ pyenv versions

Changer la version python du PC lui-même

$ pyenv global [Ver vous voulez utiliser]
$ pyenv rehash
$ pyenv version
$ python3 --version

Changer la version dans un répertoire spécifique

$ pyenv local [Ver vous voulez utiliser]

http://www.task-notes.com/entry/20141215/1418612400

3. Installez virtualenv

virtualenv: pour créer différents environnements avec la même version (python)

$ pip install virtualenv

4. Installez anaconda

anaconda: une collection de packages (NumPy, SciPy, pandas, matplotlib, scikit-learn, etc.)

$ pyenv install -l
$ pyenv install [Anaconda ver]
$ pyenv global [Anaconda ver]
$ pyenv versions

5. Construction d'un environnement virtuel

$ conda create -n [Nom de l'environnement virtuel] python(=3.6) (anaconda)
$ conda info -e //Liste d'environnement
$ source activate [Nom de l'environnement virtuel] //Entrez dans l'environnement virtuel
$ source deactivate //Sortez de l'environnement virtuel
$ conda remove -n [Nom de l'environnement virtuel] --all //Supprimer l'environnement virtuel

http://creata.hatenablog.com/entry/2016/12/18/174533

6. Définissez l'environnement virtuel comme répertoire de travail

$ cd [Directeur de travail]
$ pyenv local [Anaconda ver]/envs/[Nom de l'environnement virtuel]
$ echo 'alias activate="source [Annuaire des utilisateurs]/versions/anaconda3-4.4.0/bin/activate"' >> ~/.bash_profile
$ source ~/.bash_profile
$ activate //Entrez dans l'environnement virtuel

http://qiita.com/togoturns/items/b2ae361a669933c823f5 Crash du terminal fixe: http://qiita.com/y__sama/items/f732bb7bec2bff355b69

7. Exécution du script

$ activate [Nom de l'environnement virtuel]
$ python [nom de fichier].py

Recommended Posts

Construction d'environnement (python)
construction d'environnement python
Python - Construction de l'environnement
Construction de l'environnement Python
construction d'environnement python homebrew
Construction de l'environnement Python @ Win7
Construction de l'environnement Python + Anaconda + Pycharm
Construction de l'environnement Python (Windows10 + Emacs)
Construction de l'environnement CI ~ Édition Python ~
Construction de l'environnement Python pour Mac
Procédure de construction de l'environnement python Anaconda3
Construction de l'environnement Python3 (pour les débutants)
Construction d'environnement Python et TensorFlow
Construire un environnement Python sous un environnement Windows 7
[MEMO] [Construction de l'environnement de développement] Python
Construction de l'environnement de python2 & 3 (OSX)
Construction de l'environnement Django
Construction d'environnement de python et opencv
Mémo de construction de l'environnement Python sur Windows 10
Construction de l'environnement DeepIE3D
Commencez avec Python! ~ ① Construction de l'environnement ~
Construction de l'environnement Linux
Construction de l'environnement Anaconda Python sous Windows 10
paramètres d'environnement python
environnement windows python
Mémo de construction de l'environnement Python sur Mac
construction d'environnement django
Construction d'environnement Python (pyenv, anaconda, tensorflow)
[Python3] Construction de l'environnement de développement << Édition Windows >>
Construction de l'environnement CodeIgniter
Construction d'environnement Python (pyenv + poetry + pipx)
Construire un environnement pour python3.8 sur Mac
Construction de l'environnement Python3 avec pyenv-virtualenv (CentOS 7.3)
Construction de l'environnement Python3 TensorFlow pour Mac
Mémo de construction de l'environnement de développement Emacs Python
Construction de l'environnement pytorch @ python3.8 avec pipenv
Construction de l'environnement Golang
[docker] Construction de l'environnement python3.5 + numpy + matplotlib
Construction de l'environnement Python3.6 (à l'aide de l'environnement Win Anaconda)
Construction d'environnements OpenCV3 et Python3 sur Ubuntu
Construction de l'environnement de word2vec
[Ubuntu 18.04] Créer un environnement Python avec pyenv + pipenv
Procédure de construction de l'environnement de projet Python (pour Windows)
[Python] Road to snakes (1) Construction de l'environnement
Construction de l'environnement de développement Python3 + venv + VSCode + macOS
Construction de l'environnement VScode (Windows10, Python, C ++, C, Git)
Procédure de construction de l'environnement: Ubuntu + Apache2 + Python + Pyramid
Créer un environnement pour Python et l'apprentissage automatique (macOS)
Entendons-nous bien avec Python # 0 (Construction de l'environnement)
Création d'un environnement de développement Python pour Windows + gVim + Poetry
Construction de l'environnement: GCP + Docker
Construction de l'environnement du projet Django
Unification de l'environnement Python
Mémo de construction de l'environnement ConoHa