🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

icland

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

icland

Recreating Google DeepMind's XLand RL environment in JAX

0.2.0
PyPI
Maintainers
1

ICLand

GitHub Actions Workflow Status Codecov

Development Instructions

Clone the project locally:

$ git clone git@github.com:lysj-cpu/icland.git
$ cd icland

The project can be run via uv:

$ uv run python -c "import icland; print(icland.__doc__)"
Recreating Google DeepMind's XLand RL environment in JAX.

Ruff is used for formatting.

$ uv run ruff check   # Linting
$ uv run ruff format  # Formatting

You can also install pre-commit hooks to automatically run validation checks when making a commit:

$ uv run pre-commit install

pip

uv is preferred over pip and also installs developer dependencies. However, pip might still be useful for small modifications.

First, we create and activate a virtual environment:

$ python -m venv env
$ source env/bin/activate

Then install in editable mode:

$ pip install -e .
$ python -c "import icland; print(icland.__doc__)"
Recreating Google DeepMind's XLand RL environment in JAX.

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts