File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments