Skip to content

Commit f36c2db

Browse files
authored
Merge pull request #20 from helloissariel/main
change python version and toolkit folder name
2 parents e147f6e + 33b0cd3 commit f36c2db

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

docs/getting-started/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ python -m venv spoon-env
6565

6666
> 💡 On newer Apple Silicon Macs the `python` shim may not point to Python 3.
6767
> Use `python3` for all commands unless you have explicitly configured `python`
68-
> to target Python 3.12 or later.
68+
> to target Python 3.12 or 3.13.
6969
7070
2. Install core package in editable mode
7171

@@ -77,11 +77,11 @@ uv pip install -e . # or `pip install -e .` if you don't use uv
7777

7878
3. (Optional) Install Toolkits Package from local repo
7979

80-
If you want to use the extended blockchain and data tools from `spoon_toolkits`, install the **spoon-toolkits** package from the `spoon-toolkits` folder:
80+
If you want to use the extended blockchain and data tools from `spoon_toolkits`, install the **spoon-toolkits** package from the `spoon-toolkit` folder:
8181

8282
```bash
83-
git clone https://github.com/XSpoonAi/spoon-toolkits.git
84-
cd spoon-toolkits
83+
git clone https://github.com/XSpoonAi/spoon-toolkit.git
84+
cd spoon-toolkit
8585
pip install -e .
8686
```
8787

docs/troubleshooting/common-issues.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,9 @@ ModuleNotFoundError: No module named 'asyncio'
1515
```
1616

1717
**Solution:**
18-
1. Ensure Python 3.12+ is installed:
18+
1. Ensure Python 3.12 or Python 3.13 is installed:
1919
```bash
2020
python --version
21-
# Should show Python 3.12.0 or higher
2221
```
2322

2423
2. Create a new virtual environment:

llm.txt

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15999,7 +15999,7 @@ python -m venv spoon-env
1599915999

1600016000
> 💡 On newer Apple Silicon Macs the `python` shim may not point to Python 3.
1600116001
> Use `python3` for all commands unless you have explicitly configured `python`
16002-
> to target Python 3.12 or later.
16002+
> to target Python 3.12 or 3.13.
1600316003

1600416004
2. Install core package in editable mode
1600516005

@@ -16011,11 +16011,11 @@ uv pip install -e . # or `pip install -e .` if you don't use uv
1601116011

1601216012
3. (Optional) Install Toolkits Package from local repo
1601316013

16014-
If you want to use the extended blockchain and data tools from `spoon_toolkits`, install the **spoon-toolkits** package from the `spoon-toolkits` folder:
16014+
If you want to use the extended blockchain and data tools from `spoon_toolkits`, install the **spoon-toolkits** package from the `spoon-toolkit` folder:
1601516015

1601616016
```bash
16017-
git clone https://github.com/XSpoonAi/spoon-toolkits.git
16018-
cd spoon-toolkits
16017+
git clone https://github.com/XSpoonAi/spoon-toolkit.git
16018+
cd spoon-toolkit
1601916019
pip install -e .
1602016020
```
1602116021

@@ -22664,10 +22664,9 @@ ModuleNotFoundError: No module named 'asyncio'
2266422664
```
2266522665

2266622666
**Solution:**
22667-
1. Ensure Python 3.12+ is installed:
22667+
1. Ensure Python 3.12 or Python 3.13 is installed:
2266822668
```bash
2266922669
python --version
22670-
# Should show Python 3.12.0 or higher
2267122670
```
2267222671

2267322672
2. Create a new virtual environment:

0 commit comments

Comments
 (0)