How to install pyenv under Linux

How to install pyenv under Linux

Prerequisites

Need to install git

Installation Steps

1. Clone pyenv from the remote repository

Clone pyenv using the command below:

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

2. Configure environment variables

Use the following three commands in sequence to configure the environment variables:

echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile
echo 'eval "$(pyenv init -)"' >> ~/.bash_profile

Or go directly into the file and add at the end:

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

3. Using environment variables

Use the source command to re-execute the configuration file modified in the previous step:

source ~/.bash_profile

At this point, pyenv is installed.

You can use the following command to view the installed pyenv version:

[root@server1 local]# pyenv -v
pyenv 1.2.13-14-gecd67c8

Summarize

The above is the method of installing pyenv under Linux introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Ubuntu 18.04 installs pyenv, pyenv-virtualenv, virtualenv, Numpy, SciPy, Pillow, Matplotlib
  • Install pyenv and virtualenv to manage multiple versions and projects of Python
  • Steps to install Pyenv under Deepin
  • Tutorial on installation and use of pyenv in Mac

<<:  Vue3 draggable left and right panel split component implementation

>>:  Detailed installation and uninstallation tutorial for MySQL 8.0.12

Recommend

How to add a column to a large MySQL table

The question is referenced from: https://www.zhih...

Some tips on deep optimization to improve website access speed

<br />The website access speed can directly ...

Detailed usage of kubernetes object Volume

Overview Volume is the abstraction and virtualiza...

Interpretation of 17 advertising effectiveness measures

1. 85% of ads go unread <br />Interpretatio...

How to optimize MySQL index function based on Explain keyword

EXPLAIN shows how MySQL uses indexes to process s...

Use CSS variables to achieve cool and amazing floating effects

Recently, I found a fun hover animation from the ...

How to install and connect Navicat in MySQL 8.0.20 and what to pay attention to

Things to note 1. First, you need to create a my....

Linux Domain Name Service DNS Configuration Method

What is DNS The full name of DNS is Domain Name S...

Detailed examples of ajax usage in js and jQuery

Table of contents Native JS How to send a get req...

Detailed example of creating and deleting tables in MySQL

The table creation command requires: The name of...

Analysis of the process of deploying Python applications in Docker containers

Simple application deployment 1. Directory struct...

mysql solves the problem of finding records where two or more fields are NULL

Core code /*-------------------------------- Find...