MCPcopy
hub / github.com/HumanCompatibleAI/imitation / run

Method run

setup.py:91–102  ·  view source on GitHub ↗

Run the install command.

(self)

Source from the content-addressed store, hash-verified

89 """Custom install command to throw warnings about external dependencies."""
90
91 def run(self):
92 """Run the install command."""
93 install.run(self)
94
95 if platform == "darwin":
96 warnings.warn(
97 "Installation of important packages for macOS is required. "
98 "Scripts in the experiments folder will likely not run without these "
99 "packages: gnu-getopt, parallel, coreutils. They can be installed with "
100 "Homebrew by running `brew install gnu-getopt parallel coreutils`."
101 "See https://brew.sh/ for installation instructions.",
102 )
103
104
105def get_version(version: "ScmVersion") -> str:

Calls

no outgoing calls