add presentation

This commit is contained in:
Mara Karagianni
2024-11-29 14:45:11 +01:00
parent b09af3ea95
commit 342a45a4f2
2 changed files with 3 additions and 2 deletions

View File

@@ -2,13 +2,14 @@
### install pip3 or pip ### install pip3 or pip
Windows/Linux: [Installation](https://pip.pypa.io/en/stable/installation/) Windows/Linux: [Installation](https://pip.pypa.io/en/stable/installation/)
MacOS: Install Homebrew, see [howto](https://brew.sh/). After installation you may need to add homebrew to your PATH. Exectute the code, line by line, from the messages at the end of the homebrew installation in your terminal. Or read the steps [here](https://usercomp.com/news/1130946/add-homebrew-to-path). MacOS: [Install Homebrew](https://brew.sh/).
After installation you may need to add homebrew to your PATH. Exectute the code, line by line, from the messages at the end of the homebrew installation in your terminal. You may also read how to do it [here](https://usercomp.com/news/1130946/add-homebrew-to-path).
Verify brew is installed with `brew --version`. If not errors, then install pip with `brew install pip`. Verify brew is installed with `brew --version`. If not errors, then install pip with `brew install pip`.
Depending on your system, you may have pip or pip3. Execute `pip --version` or `pip3 --version` and see which one works for you. Depending on your system, you may have pip or pip3. Execute `pip --version` or `pip3 --version` and see which one works for you.
### virtualenv ### virtualenv
Windows/Linux: (Installation)[https://virtualenv.pypa.io/en/latest/installation.html] Windows/Linux: [Installation](https://virtualenv.pypa.io/en/latest/installation.html)
MacOS: Execute `brew install virtualenv` MacOS: Execute `brew install virtualenv`
How to use it for all systems -> [User Guide](https://virtualenv.pypa.io/en/latest/user_guide.html) How to use it for all systems -> [User Guide](https://virtualenv.pypa.io/en/latest/user_guide.html)