- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 224 for virtual (0.04 sec)
-
docs/en/docs/virtual-environments.md
# Virtual Environments { #virtual-environments } When you work in Python projects you probably should use a **virtual environment** (or a similar mechanism) to isolate the packages you install for each project. /// info If you already know about virtual environments, how to create them and use them, you might want to skip this section. 🤓 /// /// tip A **virtual environment** is different than an **environment variable**.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 22.4K bytes - Viewed (0) -
docs/ru/docs/virtual-environments.md
Например: * <a href="https://code.visualstudio.com/docs/python/environments#_select-and-activate-an-environment" class="external-link" target="_blank">VS Code</a> * <a href="https://www.jetbrains.com/help/pycharm/creating-virtual-environment.html" class="external-link" target="_blank">PyCharm</a> /// tip | Подсказка Обычно это делается один раз, при создании виртуальной среды разработки. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Dec 10 11:34:19 UTC 2024 - 34.2K bytes - Viewed (0) -
docs/ja/docs/virtual-environments.md
$ deactivate // Activate the virtual environment in prisoner-of-azkaban/.venv 🚀 $ source .venv/bin/activate // Now when you run python, it will find the package sirius installed in this virtual environment ✨ $ python main.py I solemnly swear 🐺 ``` </div> ## 代替手段
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Wed Mar 19 12:22:33 UTC 2025 - 27.8K bytes - Viewed (0) -
docs/vi/docs/virtual-environments.md
# Môi trường ảo (Virtual Environments) Khi bạn làm việc trong các dự án Python, bạn có thể sử dụng một **môi trường ảo** (hoặc một cơ chế tương tự) để cách ly các gói bạn cài đặt cho mỗi dự án. /// info Nếu bạn đã biết về các môi trường ảo, cách tạo chúng và sử dụng chúng, bạn có thể bỏ qua phần này. 🤓 /// /// tip Một **môi trường ảo** khác với một **biến môi trường (environment variable)**.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Feb 07 22:19:18 UTC 2025 - 26.1K bytes - Viewed (0) -
docs/es/docs/virtual-environments.md
/// //// Ese comando crea un nuevo entorno virtual en un directorio llamado `.venv`. /// details | `.venv` u otro nombre Podrías crear el entorno virtual en un directorio diferente, pero hay una convención de llamarlo `.venv`. /// ## Activa el Entorno Virtual Activa el nuevo entorno virtual para que cualquier comando de Python que ejecutes o paquete que instales lo utilicen.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 22.2K bytes - Viewed (0) -
docs/pt/docs/virtual-environments.md
Normalmente, você só precisa fazer isso **uma vez**, ao criar o ambiente virtual. /// ## Desativar o ambiente virtual Quando terminar de trabalhar no seu projeto, você pode **desativar** o ambiente virtual. <div class="termy"> ```console $ deactivate ``` </div> Dessa forma, quando você executar `python`, ele não tentará executá-lo naquele ambiente virtual com os pacotes instalados nele.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 22.6K bytes - Viewed (0) -
docs/zh-hant/docs/virtual-environments.md
例如: * <a href="https://code.visualstudio.com/docs/python/environments#_select-and-activate-an-environment" class="external-link" target="_blank">VS Code</a> * <a href="https://www.jetbrains.com/help/pycharm/creating-virtual-environment.html" class="external-link" target="_blank">PyCharm</a> /// tip 通常你只需要在建立虛擬環境時執行此操作**一次**。 /// ## 退出虛擬環境 當你完成工作後,你可以**退出**虛擬環境。 <div class="termy">
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 09 22:39:33 UTC 2024 - 20.7K bytes - Viewed (0) -
docs/ko/docs/virtual-environments.md
# 가상 환경 Python 프로젝트를 작업할 때는 **가상 환경** (또는 이와 유사한 도구)을 사용하는 것이 좋습니다. 각 프로젝트 마다 설치하는 패키지를 분리하여 관리할 수 있습니다. /// info | 정보 이미 가상 환경에 대해 잘 알고 있다면, 이 섹션은 건너 뛰어도 괜찮습니다. 🤓 /// /// tip | 팁 **가상 환경(Virtual Environment)** 은 **환경 변수(Environment Variable)** 와 다릅니다. **환경 변수**는 시스템에 존재하며, 프로그램이 사용할 수 있는 변수입니다. **가상 환경**은 몇몇 파일로 구성된 하나의 디렉터리입니다. /// /// info | 정보 이 페이지에서는 **가상 환경**의 사용 방법과 작동 방식을 설명합니다.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri May 30 13:10:41 UTC 2025 - 25.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java
}, page); } /** * Gets the base path for virtual host based on the virtual host key and page. * * @param s The virtual host key * @param page The HTML page * @return The base path for the virtual host */ protected String getVirtualHostBasePath(final String s, final HtmlNext page) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
return relatedQueryMap.size(); } /** * Extracts the virtual host key from a RelatedQuery entity. * If the virtual host is blank or null, returns an empty string. * * @param entity the RelatedQuery entity to extract the host key from * @return the virtual host key, or empty string if blank or null */ protected String getHostKey(final RelatedQuery entity) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0)