Skip to content

Commit 1a47987

Browse files
fix: add python link to InstallDependencies (first mile) (#4141)
1 parent 4f8c695 commit 1a47987

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/homepageExperience/components/steps/InstallDependencies.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import React, {PureComponent} from 'react'
22
import CodeSnippet from 'src/shared/components/CodeSnippet'
3+
import {SafeBlankLink} from 'src/utils/SafeBlankLink'
4+
35
import {event} from 'src/cloud/utils/reporting'
46

57
export class InstallDependencies extends PureComponent {
@@ -20,7 +22,11 @@ export class InstallDependencies extends PureComponent {
2022
onCopy={this.logCopyCodeSnippet}
2123
/>
2224
<p style={{fontStyle: 'italic'}}>
23-
You’ll need to have Python 3 installed.
25+
You’ll need to have{' '}
26+
<SafeBlankLink href="https://www.python.org/download/releases/3.0/">
27+
Python 3
28+
</SafeBlankLink>{' '}
29+
installed.
2430
</p>
2531
</>
2632
)

0 commit comments

Comments
 (0)