Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info
The Pip actions in Continua is a wrapper around the pip.exe command line. If you're having trouble using the Pip actions, please refer to the Command Line Reference.

Pip Install action is used to install python packages to the workspace.

Pip Install

Working Folder

The working directory for the pip command line. Leave blank to default to the workspace folder.

...

The name of the Python package, the URL of the VCS project, a local project directory, or the path/URL of a local/remote package archive to install. Leave blank or '.' to search in working folder.

Note that if installing a VCS project in editable mode it must be in the form: vcs+protocol://repo_url/#egg=pkg&subdirectory=pkg_dir. (e.g git+http://git.example.com/MyProject#egg=MyProject). For more information please refer to Pip Install VCS Support.

Install the project in editable mode

...

Alternatively, you can select the Custom option from the Using drop down list and specify a path in the resulting input field that will be displayed. Please read Why it's a good idea to use a property collector before using this option.


Settings

Image RemovedImage Added

Non-Binary Packages

...

Reinstall all packages even if they are already up-to-date.

Visible only if the checkbox 'Upgrade all specified packages to newest available version' is ticked.

If this is ticked, all packages are reinstalled even if they are already up-to-date. Similar process to pip uninstall -y package && pip install package.  [--force-reinstall]

Ignore the installed packages (reinstalling instead).

Visible only if the checkbox 'Upgrade all specified packages to newest available version' is ticked.

If this is ticked, installed packages and its dependencies are ignored so files are overwritten. [--ignore-reinstalled]


Connection

Proxy

Specify a proxy in the form [user:passwd@]proxy.server:port. It is recommended to use a password type variable to store the password. [--proxy]

...

If this is ticked, pip will also find pre-release and development versions. By default, pip only finds stable versions. [--pre]


Installation

Image RemovedImage Added

Root

Install everything relative to this alternate root directory. [--root]

...

Directory to unpack packages into and build in. [--build]

Install to the Python user install directory for your platform

...

.

If this is ticked, the packages will be installed to the python user install directory for your platform. Typically in %APPDATA%\Python. [--user]

...

If this is ticked, build directories are not cleaned. [--no-clean]


Package Index

Image RemovedImage Added

No Index

If this is ticked, the package index is ignored. Only look at find links URLs instead.

...

The base URL of Python Package Index. Default is https://pypi.org/simple. This should point to a repository compliant with PEP 503 (the simple repository API) or a local directory laid out in the same format. [--index-url]

Extra Index

...

URLs

Visible only if the checkbox 'No Index' is NOT ticked.

...

If this is ticked, the cache is disabled. [--no-cache-dir]

Cache Directory

Visible only if the checkbox 'Disable the cache' is NOT ticked.

The path to a directory to store the cache data. [--cache-dir]

...