From a70b585457002349332c7a258fe096c328296965 Mon Sep 17 00:00:00 2001 From: Vlad Babich Date: Tue, 4 Mar 2025 14:32:34 -0700 Subject: [PATCH] Create venv in user dir instead of /tmp --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 727f527b5ee..c11b5342f7f 100644 --- a/README.md +++ b/README.md @@ -162,8 +162,8 @@ A Python virtual environment is highly recommended for building Deephaven from s ```sh git clone https://github.com/deephaven/deephaven-core.git cd deephaven-core -python3 -m venv /tmp/my-dh-venv -source /tmp/my-dh-venv/bin/activate +python3 -m venv ~/my-dh-venv +source ~/my-dh-venv/bin/activate ./gradlew py-server:assemble pip install "py/server/build/wheel/deephaven_core--py3-non-any.whl[autocomplete] ./gradlew server-jetty-app:run