Searched refs:easy_install (Results 1 – 25 of 39) sorted by relevance
12
/external/python/setuptools/setuptools.egg-info/ |
D | entry_points.txt | 2 easy_install = setuptools.command.easy_install:main 3 easy_install-3.6 = setuptools.command.easy_install:main 15 easy_install = setuptools.command.easy_install:easy_install 64 eggsecutable = setuptools.command.easy_install:bootstrap
|
D | top_level.txt | 1 easy_install
|
D | SOURCES.txt | 7 easy_install.py 19 docs/easy_install.txt 131 setuptools/command/easy_install.py
|
/external/python/setuptools/setuptools/command/ |
D | develop.py | 11 from setuptools.command.easy_install import easy_install 16 class develop(namespaces.DevelopInstaller, easy_install): 21 user_options = easy_install.user_options + [ 26 boolean_options = easy_install.boolean_options + ['uninstall'] 42 easy_install.initialize_options(self) 54 easy_install.finalize_options(self) 140 self.easy_install(setuptools.bootstrap_install_from) 175 return easy_install.install_egg_scripts(self, dist) 192 return easy_install.install_wrapper_scripts(self, dist)
|
D | install_scripts.py | 17 import setuptools.command.easy_install as ei 53 from setuptools.command.easy_install import chmod, current_umask
|
D | install.py | 98 easy_install = self.distribution.get_command_class('easy_install') 100 cmd = easy_install(
|
/external/python/setuptools/setuptools/tests/ |
D | test_easy_install.py | 26 import setuptools.command.easy_install as ei 27 from setuptools.command.easy_install import PthDistributions 28 from setuptools.command import easy_install as easy_install_pkg 60 cmd = ei.easy_install(dist) 92 cmd = ei.easy_install(dist) 102 cmd = ei.easy_install(dist) 116 cmd = ei.easy_install(dist) 177 cmd = ei.easy_install( 184 cmd.easy_install(sdist_unicode) 221 cmd = ei.easy_install( [all …]
|
D | test_integration.py | 13 from setuptools.command.easy_install import easy_install 14 from setuptools.command import easy_install as easy_install_pkg 66 cmd = easy_install(dist)
|
/external/python/setuptools/docs/ |
D | easy_install.txt | 5 Easy Install is a python module (``easy_install``) bundled with ``setuptools`` 38 You will need at least Python 3.3 or 2.7. An ``easy_install`` script will be 47 Note that ``easy_install`` normally works by downloading files from the 53 (Alternately, if you do not wish easy_install to actually download anything, you 63 ``easy_install`` command but it fails with an ``ImportError``, the most likely 69 Similarly, if you can run ``easy_install``, and it appears to be installing 79 Installing setuptools will provide an ``easy_install`` command according to 81 ``easy_install`` command is not available after installation, that section 88 For basic use of ``easy_install``, you need only supply the filename or URL of 96 easy_install SQLObject [all …]
|
D | history.txt | 19 easy_install, including support for downloading via Sourceforge and 26 aspects of ``easy_install``, and supplied the doctests for the command-line
|
D | index.txt | 20 easy_install
|
/external/antlr/runtime/Python/ |
D | ez_setup.py | 157 from setuptools.command.easy_install import main 173 from setuptools.command.easy_install import main 175 from easy_install import main 180 from setuptools.command.easy_install import main
|
/external/python/apitools/ |
D | ez_setup.py | 200 from setuptools.command.easy_install import main 219 from setuptools.command.easy_install import main 221 from easy_install import main 226 from setuptools.command.easy_install import main
|
/external/python/setuptools/tests/ |
D | manual_test.py | 64 easy_install = os.path.join(purelib, 'easy-install.pth') 65 with open(easy_install) as f:
|
/external/python/rsa/doc/ |
D | installation.rst | 5 or easy_install. Either one will work:: 30 extra module, though: pyasn1. If you used pip or easy_install like
|
/external/python/setuptools/ |
D | easy_install.py | 4 from setuptools.command.easy_install import main
|
D | CHANGES.rst | 113 * #1200: easy_install now support installing from wheels: 200 * #196: Remove caching of easy_install command in fetch_build_egg. 947 To retain the old behavior when using any easy_install 1111 * #539: In the easy_install get_site_dirs, honor all 1431 ``easy_install._adjust_header``. 1498 * Issue #257: ``easy_install --version`` now shows more detail 1633 * Various refactoring of easy_install. 1641 * Issue #285: ``easy_install`` no longer will default to installing 1647 using the "install-dir" and "scripts-dir" parameters to easy_install 1681 * Fix ``setuptools.command.easy_install.extract_wininst_cfg()`` [all …]
|
/external/python/google-api-python-client/ |
D | README.md | 14 To install, simply use `pip` or `easy_install`: 21 $ easy_install --upgrade google-api-python-client
|
/external/tensorflow/tensorflow/tools/ci_build/install/ |
D | install_pip_packages_remote.sh | 23 easy_install -U pip==9.0.3
|
D | install_hdf5_ppc64le.sh | 29 CPATH=/usr/include/hdf5/serial/ easy_install -U h5py
|
/external/markdown/docs/ |
D | INSTALL | 28 easy_install ElementTree 29 easy_install Markdown
|
/external/capstone/bindings/python/ |
D | BUILDING.txt | 30 Depending on if you already have pip or easy_install installed, install 35 $ sudo easy_install cython
|
/external/webrtc/tools/cpu/ |
D | README | 6 sudo ARCHFLAGS='-Wno-error=unused-command-line-argument-hard-error-in-future' easy_install psutil
|
/external/python/cpython2/Mac/ |
D | Makefile.in | 100 easy_install \ 133 easy_install-$(VERSION) \
|
/external/python/setuptools/setuptools/ |
D | dist.py | 546 from setuptools.command.easy_install import easy_install 564 cmd = easy_install( 571 return cmd.easy_install(req)
|
12