mirror of
https://github.com/kennethreitz/python-guide.git
synced 2026-06-05 14:50:19 +00:00
263 lines
7.7 KiB
ReStructuredText
263 lines
7.7 KiB
ReStructuredText
.. _virtualenvironments-ref:
|
|
|
|
Pipenv & Virtual Environments
|
|
=============================
|
|
|
|
A Virtual Environment is a tool to keep the dependencies required by different
|
|
projects in separate places, by creating virtual Python environments for them.
|
|
It solves the "Project X depends on version 1.x but, Project Y needs 4.x"
|
|
dilemma, and keeps your global site-packages directory clean and manageable.
|
|
|
|
For example, you can work on a project which requires Django 1.10 while also
|
|
maintaining a project which requires Django 1.8.
|
|
|
|
|
|
Pipenv
|
|
------
|
|
|
|
**Pipenv** is a project that aims to bring the best of all packaging worlds to the Python world. It harnesses `Pipfile <https://github.com/pypa/pipfile>`_, `pip <https://github.com/pypa/pip>`_, and `virtualenv <https://github.com/pypa/virtualenv>`_ into one single toolchain. It features very pretty terminal colors.
|
|
|
|
It automatically creates and manages a virtualenv for your projects, as well as adds/removes packages from your ``Pipfile`` as you install/uninstall packages. The ``lock`` command generates a lockfile (``Pipfile.lock``).
|
|
|
|
|
|
Install Pipenv with pip::
|
|
|
|
$ pip install pipenv
|
|
✨🍰✨
|
|
|
|
|
|
|
|
virtualenv
|
|
----------
|
|
|
|
`virtualenv <http://pypi.python.org/pypi/virtualenv>`_ is a tool to create
|
|
isolated Python environments. virtualenv creates a folder which contains all the
|
|
necessary executables to use the packages that a Python project would need.
|
|
|
|
It can be used standalone, in place of Pipenv.
|
|
|
|
Install virtualenv via pip:
|
|
|
|
.. code-block:: console
|
|
|
|
$ pip install virtualenv
|
|
|
|
Test your installation
|
|
|
|
.. code-block:: console
|
|
|
|
$ virtualenv --version
|
|
|
|
Basic Usage
|
|
~~~~~~~~~~~
|
|
|
|
1. Create a virtual environment for a project:
|
|
|
|
.. code-block:: console
|
|
|
|
$ cd my_project_folder
|
|
$ virtualenv my_project
|
|
|
|
``virtualenv my_project`` will create a folder in the current directory which will
|
|
contain the Python executable files, and a copy of the ``pip`` library which you
|
|
can use to install other packages. The name of the virtual environment (in this
|
|
case, it was ``my_project``) can be anything; omitting the name will place the files
|
|
in the current directory instead.
|
|
|
|
This creates a copy of Python in whichever directory you ran the command in,
|
|
placing it in a folder named :file:`my_project`.
|
|
|
|
You can also use the Python interpreter of your choice (like
|
|
``python2.7``).
|
|
|
|
.. code-block:: console
|
|
|
|
$ virtualenv -p /usr/bin/python2.7 my_project
|
|
|
|
or change the interpreter globally with an env variable in ``~/.bashrc``:
|
|
|
|
.. code-block:: console
|
|
|
|
$ export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python2.7
|
|
|
|
2. To begin using the virtual environment, it needs to be activated:
|
|
|
|
.. code-block:: console
|
|
|
|
$ source my_project/bin/activate
|
|
|
|
The name of the current virtual environment will now appear on the left of
|
|
the prompt (e.g. ``(my_project)Your-Computer:your_project UserName$)`` to let you know
|
|
that it's active. From now on, any package that you install using pip will be
|
|
placed in the ``my_project`` folder, isolated from the global Python installation.
|
|
|
|
Install packages as usual, for example:
|
|
|
|
.. code-block:: console
|
|
|
|
$ pip install requests
|
|
|
|
3. If you are done working in the virtual environment for the moment, you can
|
|
deactivate it:
|
|
|
|
.. code-block:: console
|
|
|
|
$ deactivate
|
|
|
|
This puts you back to the system's default Python interpreter with all its
|
|
installed libraries.
|
|
|
|
To delete a virtual environment, just delete its folder. (In this case,
|
|
it would be ``rm -rf my_project``.)
|
|
|
|
After a while, though, you might end up with a lot of virtual environments
|
|
littered across your system, and its possible you'll forget their names or
|
|
where they were placed.
|
|
|
|
Other Notes
|
|
~~~~~~~~~~~
|
|
|
|
Running ``virtualenv`` with the option ``--no-site-packages`` will not
|
|
include the packages that are installed globally. This can be useful
|
|
for keeping the package list clean in case it needs to be accessed later.
|
|
[This is the default behavior for ``virtualenv`` 1.7 and later.]
|
|
|
|
In order to keep your environment consistent, it's a good idea to "freeze"
|
|
the current state of the environment packages. To do this, run
|
|
|
|
.. code-block:: console
|
|
|
|
$ pip freeze > requirements.txt
|
|
|
|
This will create a :file:`requirements.txt` file, which contains a simple
|
|
list of all the packages in the current environment, and their respective
|
|
versions. You can see the list of installed packages without the requirements
|
|
format using "pip list". Later it will be easier for a different developer
|
|
(or you, if you need to re-create the environment) to install the same packages
|
|
using the same versions:
|
|
|
|
.. code-block:: console
|
|
|
|
$ pip install -r requirements.txt
|
|
|
|
This can help ensure consistency across installations, across deployments,
|
|
and across developers.
|
|
|
|
Lastly, remember to exclude the virtual environment folder from source
|
|
control by adding it to the ignore list.
|
|
|
|
.. _virtualenvwrapper-ref:
|
|
|
|
virtualenvwrapper
|
|
-----------------
|
|
|
|
`virtualenvwrapper <https://virtualenvwrapper.readthedocs.io/en/latest/index.html>`_
|
|
provides a set of commands which makes working with virtual environments much
|
|
more pleasant. It also places all your virtual environments in one place.
|
|
|
|
To install (make sure **virtualenv** is already installed):
|
|
|
|
.. code-block:: console
|
|
|
|
$ pip install virtualenvwrapper
|
|
$ export WORKON_HOME=~/Envs
|
|
$ source /usr/local/bin/virtualenvwrapper.sh
|
|
|
|
(`Full virtualenvwrapper install instructions <https://virtualenvwrapper.readthedocs.io/en/latest/install.html>`_.)
|
|
|
|
For Windows, you can use the `virtualenvwrapper-win <https://github.com/davidmarble/virtualenvwrapper-win/>`_.
|
|
|
|
To install (make sure **virtualenv** is already installed):
|
|
|
|
.. code-block:: console
|
|
|
|
$ pip install virtualenvwrapper-win
|
|
|
|
In Windows, the default path for WORKON_HOME is %USERPROFILE%\Envs
|
|
|
|
Basic Usage
|
|
~~~~~~~~~~~
|
|
|
|
1. Create a virtual environment:
|
|
|
|
.. code-block:: console
|
|
|
|
$ mkvirtualenv my_project
|
|
|
|
This creates the :file:`my_project` folder inside :file:`~/Envs`.
|
|
|
|
2. Work on a virtual environment:
|
|
|
|
.. code-block:: console
|
|
|
|
$ workon my_project
|
|
|
|
Alternatively, you can make a project, which creates the virtual environment,
|
|
and also a project directory inside ``$PROJECT_HOME``, which is ``cd`` -ed into
|
|
when you ``workon myproject``.
|
|
|
|
.. code-block:: console
|
|
|
|
$ mkproject myproject
|
|
|
|
**virtualenvwrapper** provides tab-completion on environment names. It really
|
|
helps when you have a lot of environments and have trouble remembering their
|
|
names.
|
|
|
|
``workon`` also deactivates whatever environment you are currently in, so you
|
|
can quickly switch between environments.
|
|
|
|
3. Deactivating is still the same:
|
|
|
|
.. code-block:: console
|
|
|
|
$ deactivate
|
|
|
|
4. To delete:
|
|
|
|
.. code-block:: console
|
|
|
|
$ rmvirtualenv venv
|
|
|
|
Other useful commands
|
|
~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
``lsvirtualenv``
|
|
List all of the environments.
|
|
|
|
``cdvirtualenv``
|
|
Navigate into the directory of the currently activated virtual environment,
|
|
so you can browse its :file:`site-packages`, for example.
|
|
|
|
``cdsitepackages``
|
|
Like the above, but directly into :file:`site-packages` directory.
|
|
|
|
``lssitepackages``
|
|
Shows contents of :file:`site-packages` directory.
|
|
|
|
`Full list of virtualenvwrapper commands <https://virtualenvwrapper.readthedocs.io/en/latest/command_ref.html>`_.
|
|
|
|
virtualenv-burrito
|
|
------------------
|
|
|
|
With `virtualenv-burrito <https://github.com/brainsik/virtualenv-burrito>`_, you
|
|
can have a working virtualenv + virtualenvwrapper environment in a single command.
|
|
|
|
autoenv
|
|
-------
|
|
When you ``cd`` into a directory containing a :file:`.env`, `autoenv <https://github.com/kennethreitz/autoenv>`_
|
|
automagically activates the environment.
|
|
|
|
Install it on Mac OS X using ``brew``:
|
|
|
|
.. code-block:: console
|
|
|
|
$ brew install autoenv
|
|
|
|
And on Linux:
|
|
|
|
.. code-block:: console
|
|
|
|
$ git clone git://github.com/kennethreitz/autoenv.git ~/.autoenv
|
|
$ echo 'source ~/.autoenv/activate.sh' >> ~/.bashrc
|