Skip to content

Commit

Permalink
use venv instead of virtualenv.
Browse files Browse the repository at this point in the history
Signed-off-by: Tomoya Fujita <Tomoya.Fujita@sony.com>
  • Loading branch information
fujitatomoya committed Sep 23, 2024
1 parent d254f6f commit 740846e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ To build this you need to install

* make
* graphviz
* python virtualenv

With virtualenv
With [venv](https://docs.python.org/3/library/venv.html)

```
# activate the virtualenv
virtualenv ros2doc
...<snip>
# activate the venv
python3 -m venv ros2doc
# activate venv
source ros2doc/bin/activate
# install required packages
pip install -r requirements.txt -c constraints.txt
# deactivate the virtualenv
# deactivate the venv
(ros2doc) deactivate
```

Expand Down
2 changes: 1 addition & 1 deletion docker/image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# docker build -f docker/image/Dockerfile .

FROM ubuntu:24.04
FROM ubuntu:noble

ARG user=rosindex
ARG uid=1000
Expand Down

0 comments on commit 740846e

Please sign in to comment.