desktop
E2B Desktop Sandbox for LLMs. E2B Sandbox with desktop graphical environment that you can connect to any LLM for secure computer use.
File Explorer
- config.json
- README.md
- build_release_itinerary.cjs
- is_release.sh
- is_release_for_package.sh
- js-sdk-tests.yml
- lint.yml
- publish_packages.yml
- pull-request.yml
- python-sdk-tests.yml
- release.yml
- template.yml
- validate-renovate-config.yaml
- extensions.json
- settings.json
- .env.example
- index.js
- package-lock.json
- package.json
- README.md
- .env.example
- main.py
- poetry.lock
- pyproject.toml
- README.md
- chrome.png
- vscode.png
- README.md
- README.md
- index.ts
- sandbox.ts
- utils.ts
- apps.test.ts
- mouse.test.ts
- screen.test.ts
- setup.ts
- .eslintrc.cjs
- CHANGELOG.md
- example.mts
- LICENSE
- package.json
- README.md
- tsconfig.json
- tsup.config.js
- vitest.config.ts
- __init__.py
- main.py
- conftest.py
- test_controls.py
- .gitignore
- CHANGELOG.md
- example.py
- LICENSE
- package.json
- poetry.lock
- pyproject.toml
- pytest.ini
- README.md
- screenshot.png
- video-stream.png
- firefox-autoconfig.js
- firefox-policies.json
- firefox.cfg
- google-chrome.desktop
- screensaver.desktop
- settings.json
- wallpaper.png
- xfce4-desktop.xml
- .python-version
- build_dev.py
- build_docker.py
- build_prod.py
- poetry.lock
- pyproject.toml
- README.md
- template.py
- .eslintrc.cjs
- .gitignore
- .npmrc
- .prettierrc
- .tool-versions
- CODEOWNERS
- LICENSE
- package.json
- pnpm-lock.yaml
- pnpm-workspace.yaml
- README.md
- renovate.json5
# Use via CDN
jsDelivrjsDelivr 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.
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
