From 17d2729000d990e97aea97f5cc4f0b08d3d78226 Mon Sep 17 00:00:00 2001 From: Taiju Yamada Date: Tue, 28 Apr 2026 10:06:45 +0900 Subject: [PATCH] Encourage .venv --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 25bd5b8..8741c42 100644 --- a/README.md +++ b/README.md @@ -34,19 +34,19 @@ First, set up a virtualenv to install required pip packages: ```bash # create a new virtualenv, you can also delete it afterwards -virtualenv .ve +virtualenv .venv # install required packages -./.ve/bin/pip install six==1.16.0 requests==2.27.1 graphql-core==3.2.0 typing_extensions==4.2.0 +./.venv/bin/pip install six==1.16.0 requests==2.27.1 graphql-core==3.2.0 typing_extensions==4.2.0 # install mujinwebstackclient -./.ve/bin/pip install . +./.venv/bin/pip install . ``` Then, use `mujin_webstackclientpy_generategraphclient.py` to generate the content of the `webstackgraphclient.py` file. ```bash -./.ve/bin/python devbin/mujin_webstackclientpy_generategraphclient.py --url http://controller123 > python/mujinwebstackclient/webstackgraphclient.py +./.venv/bin/python devbin/mujin_webstackclientpy_generategraphclient.py --url http://controller123 > python/mujinwebstackclient/webstackgraphclient.py ``` ## Troubleshooting @@ -59,5 +59,5 @@ If this seems to be the case, you can delete the virtual environment. ```bash # delete the virtual environment -rm -rf ./.ve +rm -rf ./.venv ```