File tree 3 files changed +17
-16
lines changed
3 files changed +17
-16
lines changed Original file line number Diff line number Diff line change @@ -41,8 +41,13 @@ Key services that will be running:
41
41
sudo apt-get install git
42
42
```
43
43
44
- 4 . ** Python Tools **
44
+ 4 . ** Python 3.11 **
45
45
``` bash
46
+ # Add deadsnakes PPA for Python 3.11
47
+ sudo add-apt-repository ppa:deadsnakes/ppa
48
+ sudo apt-get update
49
+ sudo apt-get install python3.11 python3.11-venv python3.11-dev
50
+ sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1
46
51
sudo apt-get install python3-pip
47
52
python3 -m pip install --user pipx
48
53
python3 -m pipx ensurepath
@@ -71,7 +76,7 @@ Magick uses [Clerk](https://clerk.com/) for authentication. You'll need to set u
71
76
2 . ** Install Dependencies**
72
77
73
78
``` bash
74
- npm install
79
+ npm install --python=python3.11
75
80
```
76
81
77
82
3 . ** Configure Environment**
Original file line number Diff line number Diff line change @@ -20,28 +20,24 @@ Key services that will be running:
20
20
/bin/bash -c " $( curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh) "
21
21
```
22
22
23
- 2 . ** Git**
24
-
25
- ``` bash
26
- brew install git
27
- ```
28
-
29
- 3 . ** Node.js 18+**
23
+ 2 . ** Node.js 18+**
30
24
31
25
``` bash
32
26
brew install node@18
33
27
```
34
28
35
- 4 . ** Docker Desktop**
29
+ 3 . ** Docker Desktop**
36
30
37
31
``` bash
38
32
brew install --cask docker
39
33
```
40
34
41
35
Start Docker Desktop from Applications folder
42
36
43
- 5 . ** Python Tools **
37
+ 4 . ** Python 3.11 **
44
38
``` bash
39
+
40
+
45
41
brew install pipx
46
42
pipx ensurepath
47
43
```
@@ -69,7 +65,7 @@ Magick uses [Clerk](https://clerk.com/) for authentication. You'll need to set u
69
65
2 . ** Install Dependencies**
70
66
71
67
``` bash
72
- npm install
68
+ npm install --python=python3.11
73
69
```
74
70
75
71
3 . ** Configure Environment**
Original file line number Diff line number Diff line change @@ -36,10 +36,10 @@ Key services that will be running:
36
36
- Start Docker Desktop
37
37
- Wait for the engine to start (check system tray icon)
38
38
39
- 4 . ** Python Tools **
40
- - Download and install Python from [ python.org] ( https://www.python.org/downloads/ )
39
+ 4 . ** Python 3.11 **
40
+ - Download and install Python 3.11 from [ python.org] ( https://www.python.org/downloads/release/python-3115 / )
41
41
- During installation:
42
- - Check "Add Python to PATH"
42
+ - Check "Add Python 3.11 to PATH"
43
43
- Choose "Customize installation"
44
44
- Enable "pip" in optional features
45
45
``` cmd
@@ -70,7 +70,7 @@ Magick uses [Clerk](https://clerk.com/) for authentication. You'll need to set u
70
70
2 . ** Install Dependencies**
71
71
72
72
``` cmd
73
- npm install
73
+ npm install --python=python3.11
74
74
```
75
75
76
76
3 . ** Configure Environment**
You can’t perform that action at this time.
0 commit comments