


Share the pyenv method of Python multi-version coexistence management tool
Table of Contents
[TOC]
We often encounter this situation:
The Python that comes with the system is 2.6, you need it Some features in Python 2.7;
The system comes with Python 2.x, and you need Python 3.x;
At this time, you need to install it in the system Multiple Python, but it cannot affect the Python that comes with the system, that is, it is necessary to realize the coexistence of multiple versions of Python. pyenv is such a Python version manager.
1. Install pyenv
$ git clone git://github.com/yyuu/pyenv.git ~/.pyenv $ echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc $ echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc $ echo 'eval "$(pyenv init -)"' >> ~/.bashrc $ exec $SHELL -l
2. Install Python
View the installable versions
$ pyenv install --list
This command will list the Pythons that can be installed with pyenv Versions, just to name a few:
2.7.8 # Python 2 latest version
3.4.1 # Python 3 latest version
anaconda-2.0.1 # Supports Python 2.6 and 2.7
anaconda3 -2.0.1 # Support Python 3.3 and 3.4
Among them, those with only version numbers such as x.x.x are the official Python versions, and others with both names and versions such as xxxxx-x.x.x are "derivatives" or distribution.
2.1 Install Python's dependency packages
When installing Python, you need to first install other software packages that it depends on. Some of the known libraries that need to be pre-installed are as follows.
Under CentOS/RHEL/Fedora:
sudo yum install readline readline-devel readline-static sudo yum install openssl openssl-devel openssl-static sudo yum install sqlite-devel sudo yum install bzip2-devel bzip2-libs
2.2 Install the specified version
Use the following command to install python 3.4.1:
$ pyenv install 3.4.1 -v
The The command will download the python source code from github, extract it to the /tmp directory, and then perform the compilation work in /tmp. If the dependent package is not installed, a compilation error will occur, and you need to re-execute the command after installing the dependent package.
For scientific research environments, it is more recommended to install the Anaconda distribution specially prepared for scientific computing. pyenv install anaconda-2.1.0 installs the 2.x version, and pyenv install anaconda3-2.1.0 installs the 3.x version;
Anacoda is very large, and downloading with pyenv will be slower. You can download it yourself from the Anaconda official website, and put the downloaded file in the ~/.pyenv/cache directory, then pyenv will not The download will be repeated.
2.3 UpdateDatabase
After the installation is complete, the database needs to be updated:
$ pyenv rehash
View the currently installed python version
$ pyenv versions * system (set by /home/seisman/.pyenv/version) 3.4.1
The asterisk indicates that the python that comes with the system is currently being used.
2.4 Set the global python version
$ pyenv global 3.4.1$ pyenv versions system * 3.4.1 (set by /home/seisman/.pyenv/version)
The asterisk indicates that the system’s own python is currently being used.
2.4 Set the global python version
$ pyenv global 3.4.1$ pyenv versions system * 3.4.1 (set by /home/seisman/.pyenv/version)
The current global python version has become 3.4.1. You can also use pyenv local or pyenv shell to temporarily change the python version.
2.5 Confirm python version
$ python Python 3.4.1 (default, Sep 10 2014, 17:10:18) [GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux Type "help", "copyright", "credits" or "license" for more information.>>>
3.0 Use python
Enter python to use the new version of python;
The system's own script will directly call the old version of python in /usr/bin/python, so it will not affect the system script;
When you use pip to install third-party modules, they will be installed under ~/.pyenv/versions/3.4.1 and will not conflict with system modules.
After using pip to install the module, you may need to execute pyenv rehash to update the database;
The above is the detailed content of Share the pyenv method of Python multi-version coexistence management tool. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











Python is suitable for data science, web development and automation tasks, while C is suitable for system programming, game development and embedded systems. Python is known for its simplicity and powerful ecosystem, while C is known for its high performance and underlying control capabilities.

Python excels in gaming and GUI development. 1) Game development uses Pygame, providing drawing, audio and other functions, which are suitable for creating 2D games. 2) GUI development can choose Tkinter or PyQt. Tkinter is simple and easy to use, PyQt has rich functions and is suitable for professional development.

Python is easier to learn and use, while C is more powerful but complex. 1. Python syntax is concise and suitable for beginners. Dynamic typing and automatic memory management make it easy to use, but may cause runtime errors. 2.C provides low-level control and advanced features, suitable for high-performance applications, but has a high learning threshold and requires manual memory and type safety management.

To maximize the efficiency of learning Python in a limited time, you can use Python's datetime, time, and schedule modules. 1. The datetime module is used to record and plan learning time. 2. The time module helps to set study and rest time. 3. The schedule module automatically arranges weekly learning tasks.

Python is better than C in development efficiency, but C is higher in execution performance. 1. Python's concise syntax and rich libraries improve development efficiency. 2.C's compilation-type characteristics and hardware control improve execution performance. When making a choice, you need to weigh the development speed and execution efficiency based on project needs.

Pythonlistsarepartofthestandardlibrary,whilearraysarenot.Listsarebuilt-in,versatile,andusedforstoringcollections,whereasarraysareprovidedbythearraymoduleandlesscommonlyusedduetolimitedfunctionality.

Python excels in automation, scripting, and task management. 1) Automation: File backup is realized through standard libraries such as os and shutil. 2) Script writing: Use the psutil library to monitor system resources. 3) Task management: Use the schedule library to schedule tasks. Python's ease of use and rich library support makes it the preferred tool in these areas.

Is it enough to learn Python for two hours a day? It depends on your goals and learning methods. 1) Develop a clear learning plan, 2) Select appropriate learning resources and methods, 3) Practice and review and consolidate hands-on practice and review and consolidate, and you can gradually master the basic knowledge and advanced functions of Python during this period.
