Skip to content

Commit 8fffe9e

Browse files
authored
use_isolated_environments.rst minor update
1 parent 1c55020 commit 8fffe9e

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

docs/day2/use_isolated_environments.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@ With this tool you can download and install with ``pip`` from the `PyPI reposito
141141
python -V
142142
cd /proj/courses-fall-2025/users/<username>
143143
python -m venv env-matplotlib
144-
source activate env-matplotlib
144+
source env-matplotlib/bin/activate
145+
#note that the prompt has ``(env-matplotlib)``
145146
pip install matplotlib
146147
python
147148
@@ -152,7 +153,7 @@ With this tool you can download and install with ``pip`` from the `PyPI reposito
152153
.. note::
153154

154155
- You can use "pip list" on the command line (after loading the python module) to see which packages are available and which versions.
155-
- Some packaegs may be inhereted from the moduels yopu have loaded
156+
- Some packages may be inhereted from the moduels yopu have loaded
156157
- You can do ``pip list --local`` to see what is installed by you in the environment.
157158
- Some IDE:s like Spyder may only find those "local" packages
158159

@@ -196,7 +197,7 @@ Conda
196197

197198
- The conda environemnts inclusing many small files are by default stored in ``~/.conda`` folder that is in your $HOME directory with limited storage.
198199
- Move your ``.conda`` directory to your project folder and make a soft link to it from ``$HOME``
199-
- Do the following (``mkdir -p`` ignores error output and will not recfreate anothe folder if it already exists):
200+
- Do the following (``mkdir -p`` ignores error output and will not recreate another folder if it already exists):
200201
- (replace what is inside ``<>`` with relevant path)
201202

202203
- Solution 1

0 commit comments

Comments
 (0)