← スキル一覧に戻る

python
by rukikotoo
AutoRegMonkey,实证机器人
⭐ 6🍴 0📅 2025年12月10日
SKILL.md
name: python description: Execute Python scripts and code using the user's Anaconda Python installation at C:\Users\29165\anaconda3\python.exe. Use this skill when the user needs to run Python code, execute Python scripts, install Python packages, or perform any Python-related tasks.
Python Skill
This skill provides access to the user's Python installation located at:
C:\Users\29165\anaconda3\python.exe
画图要支持中文:
2. CHINESE FONT SUPPORT (Critical for Windows)
plt.rcParams['font.sans-serif'] = ['SimHei', 'Microsoft YaHei', 'SimSun', 'Arial'] plt.rcParams['axes.unicode_minus'] = False # Fix minus sign display issue
Instructions
File Organization:
- Store all raw data files in the
data/directory - Place all intermediate files and scripts in the
workspace/directory - Save all final results and outputs to the
result/directory - This keeps your project organized and makes it easy to clean intermediate files
-
To execute a Python script file:
"C:\Users\29165\anaconda3\python.exe" script.py -
To run Python code directly:
"C:\Users\29165\anaconda3\python.exe" -c "print('Hello, world!')" -
To install Python packages:
"C:\Users\29165\anaconda3\python.exe" -m pip install package-name -
To check Python version:
"C:\Users\29165\anaconda3\python.exe" --version -
To run a Python module:
"C:\Users\29165\anaconda3\python.exe" -m module_name
Important Notes
- Always use double quotes around the path in Bash commands:
"C:\Users\29165\anaconda3\python.exe" - The user's Python installation includes Anaconda, so it has many scientific computing packages pre-installed
- Use
python.exefor all Python operations (command-line scripts and applications)
Examples
Example 1: Run a script with proper file organization
# Raw data in data/, script in workspace/, output to result/
"C:\Users\29165\anaconda3\python.exe" workspace/data_processor.py --input data/raw_data.csv --output result/processed_data.csv
Example 2: Execute one-liner
"C:\Users\29165\anaconda3\python.exe" -c "import numpy as np; print(np.__version__)"
Example 3: Install package
"C:\Users\29165\anaconda3\python.exe" -m pip install pandas
Example 4: Run Jupyter notebook
"C:\Users\29165\anaconda3\python.exe" -m notebook
When to Use This Skill
- User asks to run Python code or scripts
- User needs to install Python packages
- User wants to check Python version or environment
- User requests data analysis, machine learning, or scientific computing tasks
- User needs to execute any Python-based tool or utility
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です