What is virtual linux environment

What is a virtualenv, and why should I use one?

I am trying to install a Python package with this command

I’m getting permission errors and I’m not sure why. I could run it with sudo , but someone told me that was a bad idea, and I should use a virtualenv instead.

What is a virtualenv? What does it do for me?

3 Answers 3

Running with the system Python and libraries limits you to one specific Python version, chosen by your OS provider. Trying to run all Python applications on one Python installation makes it likely that version conflicts will occur among the collection of libraries. It’s also possible that changes to the system Python will break other OS features that depend on it.

Virtual environments, or «virtualenvs» are lightweight, self-contained Python installations, designed to be set up with a minimum of fuss, and to «just work» without requiring extensive configuration or specialized knowledge.

virtualenv avoids the need to install Python packages globally. When a virtualenv is active, pip will install packages within the environment, which does not affect the base Python installation in any way.

In Python 3.3 or later, you can create a virtualenv as follows:

For Windows, you should replace python3 with the full path to python.exe:

(This is a typical Python installation; your system may vary.)

In older versions of Python, including Python 2, one of the following commands should work in most cases:

ENV_DIR should be a non-existent directory. The directory can have any name, but to keep these instructions simple, I will assume you have created your virtualenv in a directory called venv (e.g. with python3 -m venv ./venv ).

To work in your virtualenv, you activate it:

Or use this if you have a windows system:

The (venv) in the shell prompt lets you know which virtualenv you have activated, but you can turn this feature off if you do not like it. You can run all the usual Python commands, and they will be local to your virtualenv:

python will run the version of Python that you installed into your virtualenv, so (for example) you don’t have to type python3 to get Python 3. The Python that it runs will have access to all the standard library modules and all the packages you installed into the virtualenv, but (by default) none of the packages installed in the system-wide site-packages directory.

This last rule is important: by restricting your virtualenv to only use locally-installed packages, you can ensure that you control exactly which dependencies your project is using, even if some new system-wide package gets installed or updated next week. If you like, you can get a listing of your installed packages:

pip can also parse this format and install from it, and it will install the same versions, even if updates have been released in the meantime:

You can get out of the virtualenv by deactivating it:

You can create as many virtualenvs as you like, and they won’t interfere with each other, nor with your system packages. A virtualenv is «just» a directory with a bunch of binaries and scripts under it, so you can remove a virtualenv the same way you remove any directory ( rm -r venv on Unix). If the virtualenv is activated when you remove it, you may confuse your shell, so it’s probably a good idea to deactivate first in that case.

Источник

venv — Creation of virtual environments¶

New in version 3.3.

Source code: Lib/venv/

The venv module provides support for creating lightweight “virtual environments” with their own site directories, optionally isolated from system site directories. Each virtual environment has its own Python binary (which matches the version of the binary that was used to create this environment) and can have its own independent set of installed Python packages in its site directories.

Читайте также:  Проверить утечки памяти линукс

See PEP 405 for more information about Python virtual environments.

Creating virtual environments¶

Creation of virtual environments is done by executing the command venv :

Running this command creates the target directory (creating any parent directories that don’t exist already) and places a pyvenv.cfg file in it with a home key pointing to the Python installation from which the command was run (a common name for the target directory is .venv ). It also creates a bin (or Scripts on Windows) subdirectory containing a copy/symlink of the Python binary/binaries (as appropriate for the platform or arguments used at environment creation time). It also creates an (initially empty) lib/pythonX.Y/site-packages subdirectory (on Windows, this is Lib\site-packages ). If an existing directory is specified, it will be re-used.

Deprecated since version 3.6: pyvenv was the recommended tool for creating virtual environments for Python 3.3 and 3.4, and is deprecated in Python 3.6.

Changed in version 3.5: The use of venv is now recommended for creating virtual environments.

On Windows, invoke the venv command as follows:

Alternatively, if you configured the PATH and PATHEXT variables for your Python installation :

The command, if run with -h , will show the available options:

Changed in version 3.9: Add —upgrade-deps option to upgrade pip + setuptools to the latest on PyPI

Changed in version 3.4: Installs pip by default, added the —without-pip and —copies options

Changed in version 3.4: In earlier versions, if the target directory already existed, an error was raised, unless the —clear or —upgrade option was provided.

While symlinks are supported on Windows, they are not recommended. Of particular note is that double-clicking python.exe in File Explorer will resolve the symlink eagerly and ignore the virtual environment.

On Microsoft Windows, it may be required to enable the Activate.ps1 script by setting the execution policy for the user. You can do this by issuing the following PowerShell command:

PS C:> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

The created pyvenv.cfg file also includes the include-system-site-packages key, set to true if venv is run with the —system-site-packages option, false otherwise.

Unless the —without-pip option is given, ensurepip will be invoked to bootstrap pip into the virtual environment.

Multiple paths can be given to venv , in which case an identical virtual environment will be created, according to the given options, at each provided path.

Once a virtual environment has been created, it can be “activated” using a script in the virtual environment’s binary directory. The invocation of the script is platform-specific ( must be replaced by the path of the directory containing the virtual environment):

Command to activate virtual environment

PS C:\> \Scripts\Activate.ps1

When a virtual environment is active, the VIRTUAL_ENV environment variable is set to the path of the virtual environment. This can be used to check if one is running inside a virtual environment.

You don’t specifically need to activate an environment; activation just prepends the virtual environment’s binary directory to your path, so that “python” invokes the virtual environment’s Python interpreter and you can run installed scripts without having to use their full path. However, all scripts installed in a virtual environment should be runnable without activating it, and run with the virtual environment’s Python automatically.

You can deactivate a virtual environment by typing “deactivate” in your shell. The exact mechanism is platform-specific and is an internal implementation detail (typically a script or shell function will be used).

New in version 3.4: fish and csh activation scripts.

Читайте также:  Вопросики вместо русских букв windows

New in version 3.8: PowerShell activation scripts installed under POSIX for PowerShell Core support.

A virtual environment is a Python environment such that the Python interpreter, libraries and scripts installed into it are isolated from those installed in other virtual environments, and (by default) any libraries installed in a “system” Python, i.e., one which is installed as part of your operating system.

A virtual environment is a directory tree which contains Python executable files and other files which indicate that it is a virtual environment.

Common installation tools such as setuptools and pip work as expected with virtual environments. In other words, when a virtual environment is active, they install Python packages into the virtual environment without needing to be told to do so explicitly.

When a virtual environment is active (i.e., the virtual environment’s Python interpreter is running), the attributes sys.prefix and sys.exec_prefix point to the base directory of the virtual environment, whereas sys.base_prefix and sys.base_exec_prefix point to the non-virtual environment Python installation which was used to create the virtual environment. If a virtual environment is not active, then sys.prefix is the same as sys.base_prefix and sys.exec_prefix is the same as sys.base_exec_prefix (they all point to a non-virtual environment Python installation).

When a virtual environment is active, any options that change the installation path will be ignored from all distutils configuration files to prevent projects being inadvertently installed outside of the virtual environment.

When working in a command shell, users can make a virtual environment active by running an activate script in the virtual environment’s executables directory (the precise filename and command to use the file is shell-dependent), which prepends the virtual environment’s directory for executables to the PATH environment variable for the running shell. There should be no need in other circumstances to activate a virtual environment; scripts installed into virtual environments have a “shebang” line which points to the virtual environment’s Python interpreter. This means that the script will run with that interpreter regardless of the value of PATH . On Windows, “shebang” line processing is supported if you have the Python Launcher for Windows installed (this was added to Python in 3.3 — see PEP 397 for more details). Thus, double-clicking an installed script in a Windows Explorer window should run the script with the correct interpreter without there needing to be any reference to its virtual environment in PATH .

The high-level method described above makes use of a simple API which provides mechanisms for third-party virtual environment creators to customize environment creation according to their needs, the EnvBuilder class.

class venv. EnvBuilder ( system_site_packages = False , clear = False , symlinks = False , upgrade = False , with_pip = False , prompt = None , upgrade_deps = False ) В¶

The EnvBuilder class accepts the following keyword arguments on instantiation:

system_site_packages – a Boolean value indicating that the system Python site-packages should be available to the environment (defaults to False ).

clear – a Boolean value which, if true, will delete the contents of any existing target directory, before creating the environment.

symlinks – a Boolean value indicating whether to attempt to symlink the Python binary rather than copying.

upgrade – a Boolean value which, if true, will upgrade an existing environment with the running Python — for use when that Python has been upgraded in-place (defaults to False ).

with_pip – a Boolean value which, if true, ensures pip is installed in the virtual environment. This uses ensurepip with the —default-pip option.

prompt – a String to be used after virtual environment is activated (defaults to None which means directory name of the environment would be used). If the special string «.» is provided, the basename of the current directory is used as the prompt.

upgrade_deps – Update the base venv modules to the latest on PyPI

Читайте также:  Linux hive os майнинг

Changed in version 3.4: Added the with_pip parameter

New in version 3.6: Added the prompt parameter

New in version 3.9: Added the upgrade_deps parameter

Creators of third-party virtual environment tools will be free to use the provided EnvBuilder class as a base class.

The returned env-builder is an object which has a method, create :

Create a virtual environment by specifying the target directory (absolute or relative to the current directory) which is to contain the virtual environment. The create method will either create the environment in the specified directory, or raise an appropriate exception.

The create method of the EnvBuilder class illustrates the hooks available for subclass customization:

Creates the environment directory and all necessary directories, and returns a context object. This is just a holder for attributes (such as paths), for use by the other methods. The directories are allowed to exist already, as long as either clear or upgrade were specified to allow operating on an existing environment directory.

Creates the pyvenv.cfg configuration file in the environment.

Creates a copy or symlink to the Python executable in the environment. On POSIX systems, if a specific executable python3.x was used, symlinks to python and python3 will be created pointing to that executable, unless files with those names already exist.

Installs activation scripts appropriate to the platform into the virtual environment.

Upgrades the core venv dependency packages (currently pip and setuptools ) in the environment. This is done by shelling out to the pip executable in the environment.

New in version 3.9.

A placeholder method which can be overridden in third party implementations to pre-install packages in the virtual environment or perform other post-creation steps.

Changed in version 3.7.2: Windows now uses redirector scripts for python[w].exe instead of copying the actual binaries. In 3.7.2 only setup_python() does nothing unless running from a build in the source tree.

Changed in version 3.7.3: Windows copies the redirector scripts as part of setup_python() instead of setup_scripts() . This was not the case in 3.7.2. When using symlinks, the original executables will be linked.

In addition, EnvBuilder provides this utility method that can be called from setup_scripts() or post_setup() in subclasses to assist in installing custom scripts into the virtual environment.

install_scripts ( context , path ) В¶

path is the path to a directory that should contain subdirectories “common”, “posix”, “nt”, each containing scripts destined for the bin directory in the environment. The contents of “common” and the directory corresponding to os.name are copied after some text replacement of placeholders:

__VENV_DIR__ is replaced with the absolute path of the environment directory.

__VENV_NAME__ is replaced with the environment name (final path segment of environment directory).

__VENV_PROMPT__ is replaced with the prompt (the environment name surrounded by parentheses and with a following space)

__VENV_BIN_NAME__ is replaced with the name of the bin directory (either bin or Scripts ).

__VENV_PYTHON__ is replaced with the absolute path of the environment’s executable.

The directories are allowed to exist (for when an existing environment is being upgraded).

There is also a module-level convenience function:

venv. create ( env_dir , system_site_packages = False , clear = False , symlinks = False , with_pip = False , prompt = None , upgrade_deps = False ) В¶

Create an EnvBuilder with the given keyword arguments, and call its create() method with the env_dir argument.

New in version 3.3.

Changed in version 3.4: Added the with_pip parameter

Changed in version 3.6: Added the prompt parameter

Changed in version 3.9: Added the upgrade_deps parameter

An example of extending EnvBuilder В¶

The following script shows how to extend EnvBuilder by implementing a subclass which installs setuptools and pip into a created virtual environment:

This script is also available for download online.

Источник

Оцените статью