# qwenllm **Repository Path**: ilinxq/qwenllm ## Basic Information - **Project Name**: qwenllm - **Description**: 用于qwen的练习 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-10-08 - **Last Updated**: 2025-10-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## environment 创建python虚拟环境 ``` shell pthon3 -m venv .venv source .venv/bin/activate ``` vscode使用.venv下的python: - 在 VS Code 中按下快捷键:Ctrl + Shift + P 打开命令面板。 - 输入并选择: ``` text Python: Select Interpreter ``` 或者手动输入路径: ``` ~/helloworld/.venv/bin/python ``` 选中它后,VS Code 就会使用这个虚拟环境中的 Python 和 pip。 ## dependencies ``` shell source .venv/bin/activate # 多次存在网络问题不成功,则需要梯子 pip install openai # 验证openai是否安装成功 python -c "import openai; print(openai.__version__)" ```