Skip to content

Commit 87bb771

Browse files
GeneAIclaude
andcommitted
fix: Correct package name and directory in installation commands
Fixed bash commands to match actual package and repository: Installation Commands: - Changed: pip install empathy-framework - To: pip install empathy - Reason: Package name in pyproject.toml is "empathy" Source Installation: - Changed: cd empathy-framework - To: cd empathy - Reason: git clone creates "empathy" directory from repo name Files updated: - website/app/docs/page.tsx - website/app/framework/page.tsx Git clone command was already correct: git clone https://github.com/Smart-AI-Memory/empathy.git All bash commands now accurately reflect the package name and repository structure. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 92c00c9 commit 87bb771

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

website/app/docs/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,14 @@ export default function DocsPage() {
9393
Install the Empathy Framework using pip:
9494
</p>
9595
<pre className="bg-[var(--foreground)] text-[var(--background)] p-4 rounded-lg mb-4">
96-
<code>pip install empathy-framework</code>
96+
<code>pip install empathy</code>
9797
</pre>
9898
<p className="text-[var(--text-secondary)]">
9999
Or install from source:
100100
</p>
101101
<pre className="bg-[var(--foreground)] text-[var(--background)] p-4 rounded-lg">
102102
{`git clone https://github.com/Smart-AI-Memory/empathy.git
103-
cd empathy-framework
103+
cd empathy
104104
pip install -e .`}
105105
</pre>
106106
</section>

website/app/framework/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export default function FrameworkPage() {
113113
<div>
114114
<h3 className="text-2xl font-bold mb-4">Installation</h3>
115115
<pre className="bg-[var(--foreground)] text-[var(--background)] p-4 rounded-lg overflow-x-auto">
116-
<code>pip install empathy-framework</code>
116+
<code>pip install empathy</code>
117117
</pre>
118118
</div>
119119

0 commit comments

Comments
 (0)