スキル一覧に戻る
neurostuff

setting-up-a-development-environment

by neurostuff

setting-up-a-development-environmentは、other分野における実用的なスキルです。複雑な課題への対応力を強化し、業務効率と成果の質を改善します。

203🍴 62📅 2026年1月19日
GitHubで見るManusで実行

SKILL.md


name: setting up a development environment description: Set up a development environment for writing and testing code.

Setting Up a Development Environment

Use a reproducible, project-local environment and install NiMARE in editable mode so code changes are immediately available when running tests or examples.

Creating or reusing an environment

  • Prefer a local virtual environment (e.g., .venv) in the repository root; reuse it if it already exists.

  • Use a supported Python version (>=3.10) consistent with docs/installation.rst.

  • If no .venv exists, create and activate one:

    python3 -m venv .venv
    source .venv/bin/activate
    
  • When installing dependencies, try uv pip install ... first to keep installs fast and deterministic.

  • If uv is unavailable or fails, fall back to .venv/bin/python -m pip install ....

Installing NiMARE for development

  • Install NiMARE in editable mode with all extras so tests and docs can run:

    uv pip install -e .[all]
    
  • If that fails or uv is not installed, use:

    .venv/bin/python -m pip install -e .[all]
    
  • Confirm the environment by importing NiMARE and running a small command, for example:

    python -c "import nimare; print(nimare.__version__)"
    

スコア

総合スコア

70/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

+5
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

+5
Issue管理

オープンIssueが50未満

0/5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

レビュー

💬

レビュー機能は近日公開予定です