Lines Matching refs:EnvBuilder
97 creation according to their needs, the :class:`EnvBuilder` class.
99 .. class:: EnvBuilder(system_site_packages=False, clear=False, \
103 The :class:`EnvBuilder` class accepts the following keyword arguments on
140 provided :class:`EnvBuilder` class as a base class.
152 The ``create`` method of the :class:`EnvBuilder` class illustrates the
219 In addition, :class:`EnvBuilder` provides this utility method that can be
254 Create an :class:`EnvBuilder` with the given keyword arguments, and call its
255 :meth:`~EnvBuilder.create` method with the *env_dir* argument.
265 An example of extending ``EnvBuilder``
268 The following script shows how to extend :class:`EnvBuilder` by implementing a
280 class ExtendedEnvBuilder(venv.EnvBuilder):