T.B.D.
T.B.D.
T.B.D.
T.B.D.
Make sure you have Python 3.12 or newer
installed on your system. Please note that the commands in the next chapters
use python
but your system may require you to type python3
instead.
- Choose your installation folder and open it in a terminal emulator (a.k.a. command line) running cmd, powershell, bash, zsh or other sh-like shell.
- Clone the GitHub repository
If you don't have git installed, go back to the python_etudes GitHub repository page and download it as a zip archive file. Then extract its contents to an installation folder of your choice.
git clone https://github.com/slacker-by-design/python_etudes
- T.B.D. (install...)
- Run the converter
python -m webconverter
- Choose your installation folder and clone the GitHub repository into it
- Create a Python virtual environment
cd webconverter python -m venv venv
- Activate the virtual environment
- Linux & macOS
source venv/bin/activate
- Windows Powershell
.\venv\Scripts\Activate.ps1
- Windows CMD
venv\scripts\activate.bat
- Linux & macOS
- Install the
webconverter
package as editablepython -m pip install -e .
- Make sure the
pytest
package is installed in your virtual environment The commandshould show a list of installed packages includingpython -m pip list
webconverter
andpytest
. In casepytest
is missing, install it by typingpython -m pip install ".[test]"
- Run the tests
python -m pytest
Here's few more bits and pieces, which may be useful... T.B.D.