Lines Matching full:install

10 # and install Python requirements into it.
11 # It does not install OS dependencies. It does install tools such as the Xtensa
19 # install.sh (.bat) and export.sh (.bat) scripts are provided to invoke this script.
23 # * To install the tools, run `idf_tools.py install`.
25 # * To install the Python environment, run `idf_tools.py install-python-env`.
491 'install',
501 # possible values of 'install' field
506 …def __init__(self, name, description, install, info_url, license, version_cmd, version_regex, supp… argument
517 …[], OrderedDict(), install, info_url, license, strip_container_dirs, supported_targets) # type: i…
595 return self._current_options.install # type: ignore
724 def install(self, version): # type: (str) -> None member in IDFTool
793 install = tool_dict.get('install', False) # type: ignore
794 if type(install) is not expected_str_type:
795 raise RuntimeError('install for tool %s is not a string' % tool_name)
818 tool_obj = cls(tool_name, description, install, info_url, license, # type: ignore
833 install = override.get('install') # type: ignore
834 if install is not None and type(install) is not expected_str_type:
835 … raise RuntimeError('install for override %d of tool %s is not a string' % (index, tool_name))
893 if install != IDFTool.INSTALL_NEVER and len(recommended_versions) == 0:
921 'install': self.options.install,
1220 install_cmd = self_restart_cmd + ' install'
1225 fatal('tool {} has no installed versions. Please run \'{}\' to install it.'.format(
1470 tool_obj.install(tool_version)
1522 …'Please check the Getting Started Guides for the steps to install prerequisites for your OS.'.form…
1530 subprocess.check_call([sys.executable, '-m', 'pip', 'install', '--user', 'virtualenv'],
1559 …warn('Found PIP_USER="yes" in the environment. Disabling PIP_USER in this shell to install package…
1561 run_args = [virtualenv_python, '-m', 'pip', 'install', '--no-warn-script-location']
1638 fatal('You need to install jsonschema package to use validate command')
1750install = subparsers.add_parser('install', help='Download and install tools into the tools directo…
1751 install.add_argument('tools', metavar='TOOL', nargs='*', default=['required'],
1752 help='Tools to install. ' +
1753 'To install a specific version use <tool_name>@<version> syntax. ' +
1754 … 'Use empty or \'required\' to install required tools, not optional ones. ' +
1755 'Use \'all\' to install all tools, including the optional ones.')
1756install.add_argument('--targets', default='all', help='A comma separated list of desired chip targ…
1770 for subparser in [download, install]:
1775 install_python_env = subparsers.add_parser('install-python-env',
1776 … help='Create Python virtual environment and install the ' +