The following steps and prerequisites are required to install VBDeepSeek:
environmental preparation
- Python environment: Requires Python 3.8 or higher, which can be downloaded and installed from the official Python website.
- Project Acquisition: Cloning a project repository locally via the Git command line
git clone https://github.com/vxiaozhi/vocabulary-book-by-deepseek.git
- Dependent Installation: Go to the project directory and run
pip install -r requirements.txt
Installation of required dependencies
Key Configurations
- DeepSeek API Configuration: You need to register a DeepSeek account to get the API key, and it is recommended to set it via environment variable.
export DEEPSEEK_API_KEY="你的密钥"
Instead of hard-coding - Catalog checking: Make sure the project contains the directory structures data/cet4/ and result/cet4/, if they are missing, you need to create them manually.
network requirement
A stable internet connection is required to run the script, as all lexical analysis functions rely on DeepSeek's API interface service.
Optional Configurations
Users can modify the script parameters as needed, such as adjusting the resolution of the output image, the path of the JSON file or the Markdown article template.
This answer comes from the articleVBDeepSeek: an open source tool for generating grade 4 word study materials using DeepSeekThe