openadmet-toolkit

(★ 30)

Toolkit for large scale ADMET modelling

File Explorer

  • .codecov.yml
  • .gitattributes
  • .gitignore
  • .lgtm.yml
  • .pre-commit-config.yaml
  • .readthedocs.yml
  • CODE_OF_CONDUCT.md
  • LICENSE
  • MANIFEST.in
  • pyproject.toml
  • README.md
  • setup.cfg

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

mamba

View Details ▼

Fast, cross-platform package manager, intended as a drop-in replacement for conda.
Some subcommands such as `repoquery` have their own usage documentation.
See also: `conda`.

mamba create {{[-n|--name]}} {{environment_name}} {{python=3.10 matplotlib}}

Create a new environment, installing the specified packages into it:

mamba install {{[-c|--channel]}} {{conda-forge}} {{python=3.6 numpy}}

Install packages into the current environment, specifying the package channel:

mamba update {{[-a|--all]}}

Update all packages in the current environment:

🔍

python

View Details ▼

Python language interpreter.

python

Start a REPL (interactive shell):

python {{path/to/file.py}}

Execute a specific Python file:

python -i {{path/to/file.py}}

Execute a specific Python file and start a REPL:

// repository documentation