Skip to content

Commit

Permalink
Simplify venv install
Browse files Browse the repository at this point in the history
  • Loading branch information
corentinlger committed Jan 8, 2025
1 parent aee33fb commit 897e0bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions notebooks/sessions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ You will need a set of software tools installed on your computer, which are list
python3 -m venv env_vivarium

# if the above command doesn't work and you are asked to install the `venv` module
# it will give you a command to do so, just add `sudo` at the beginning of it
# it should look like this, it will ask you to confirm the installation by typing `y` and pressing `Enter` when you run it:
sudo apt install python3.10-venv
# it will give you a command to do so, just add `sudo` at the beginning of it and a -y at the end
# it should look like this:
sudo apt install -y python3.10-venv
# then run the first command again to create the virtual environment

# activate the virtual environment
Expand Down

0 comments on commit 897e0bd

Please sign in to comment.