Download and install the latest Python vesrion.
Important
During installation, add python to your environmental variables. That means that you have to check the box saying ADD TO PATH on the first screen during the installation
Note
If prompted select to additionally install pip.
Caution
We do not recommend using other python distributions (e.g. anaconda).
Next
- Verify that python is installed.
- Open a command prompt and type the command for launching a python interpreter. Depending on the OS and python's version this can either be
python,python3,pyorpy3. - If none work, you need to add python to your environmental variables manually. To do this, find the interpreter in the installation directory and add it as an environmental variable.
- From now on we'll consider that python is installed and works with the command
python. If this differs in your PC, use your own instead ofpythonfrom now on.
- Open a command prompt and type the command for launching a python interpreter. Depending on the OS and python's version this can either be
- Verify that pip is installed.
- Pip is a package manager for Python.
- Open a command prompt and type the command
pip. - If it doesn't exist type
python -m pip. If this works, you can add pip to your environmental variables (look above on how to do this). ` - If pip isn't installed, download the installer from here and run it as a python scripy:
python get-pip.py.
- Packages required during this course can be installed using the pip package manager. Either
pip install package-nameorpython -m pip install package-name. Any package that is required will be pointed out and installed in class.
Feel free to use any IDE you like. However, VS Code is the recommended IDE since it is light-weight, has a ton of extensions/plugins, and it is an industry standard.
- Git, download and install Git Version Control
- Create a Hugging Face account
- Create a Github account