From 117a9cfcf27e637be68f60e2cc4bff9d85902f9a Mon Sep 17 00:00:00 2001 From: Kevin Zakka Date: Tue, 29 Mar 2022 10:56:07 -0700 Subject: [PATCH] Nits. --- python/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/python/README.md b/python/README.md index acfbbd29..f9b8cb66 100644 --- a/python/README.md +++ b/python/README.md @@ -51,7 +51,8 @@ cd mujoco/python 3. Create a virtual environment: ```bash -python3 -m venv /tmp/mujoco && /tmp/mujoco/bin/activate +python3 -m venv /tmp/mujoco +source /tmp/mujoco/bin/activate ``` 4. Generate a [source distribution](https://packaging.python.org/en/latest/glossary/#term-Source-Distribution-or-sdist) @@ -71,7 +72,7 @@ cd dist MUJOCO_PATH=/PATH/TO/MUJOCO pip install mujoco-2.1.X.tar.gz ``` -The python bindings should now be installed! To check that they've been successfully installed, cd outside of the mujoco directory and run `python -c "import mujoco"`. +The Python bindings should now be installed! To check that they've been successfully installed, `cd` outside of the `mujoco` directory and run `python -c "import mujoco"`. ## Usage