Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create a Python virtual environment #6681

Merged
merged 29 commits into from
Jan 27, 2025
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
a298b32
Create a Python virtual environment
nataliefiann Dec 17, 2024
89b960e
Merge branch 'nfiann-prerelease' into new-branch-name-VE
mirnawong1 Dec 19, 2024
ee5f283
Merge branch 'nfiann-prerelease' into new-branch-name-VE
mirnawong1 Dec 19, 2024
7c89426
Update website/docs/docs/core/create-a-python-virtual-environment.md
nataliefiann Dec 20, 2024
544cce2
Added tabs
nataliefiann Dec 20, 2024
1c6b1de
Merge branch 'new-branch-name-VE' of https://github.com/dbt-labs/docs…
nataliefiann Dec 20, 2024
4fd2cd2
Update website/docs/docs/core/create-a-python-virtual-environment.md
nataliefiann Dec 23, 2024
75c8a35
Update website/docs/docs/core/create-a-python-virtual-environment.md
nataliefiann Dec 23, 2024
5ecbad2
Update website/docs/docs/core/create-a-python-virtual-environment.md
nataliefiann Dec 23, 2024
749d9b8
Update website/docs/docs/core/create-a-python-virtual-environment.md
nataliefiann Dec 23, 2024
322359d
Update website/docs/docs/core/create-a-python-virtual-environment.md
nataliefiann Dec 23, 2024
867ccfc
Update website/docs/docs/core/create-a-python-virtual-environment.md
nataliefiann Dec 23, 2024
e16c8bf
Update website/docs/docs/core/create-a-python-virtual-environment.md
nataliefiann Dec 23, 2024
46222c3
Update website/docs/docs/core/create-a-python-virtual-environment.md
nataliefiann Dec 23, 2024
568191f
Merge branch 'nfiann-prerelease' into new-branch-name-VE
nataliefiann Dec 23, 2024
bc1fcb7
rendered examples
nataliefiann Dec 30, 2024
b0f3b61
Update website/docs/docs/core/create-a-python-virtual-environment.md
nataliefiann Jan 6, 2025
5a11611
Merge branch 'nfiann-prerelease' into new-branch-name-VE
nataliefiann Jan 6, 2025
b326b08
Merge branch 'nfiann-prerelease' into new-branch-name-VE
nataliefiann Jan 24, 2025
65346ff
Updated PR
nataliefiann Jan 24, 2025
f30f4cb
Update website/docs/docs/core/pip-install.md
nataliefiann Jan 24, 2025
e987de6
rolled in feedback
nataliefiann Jan 24, 2025
8ee97f3
added code blocks and webaite links
nataliefiann Jan 24, 2025
6c84676
Merge branch 'nfiann-prerelease' into new-branch-name-VE
mirnawong1 Jan 24, 2025
4f1ae53
Update website/docs/docs/core/pip-install.md
nataliefiann Jan 24, 2025
5d6322e
Amended Headers
nataliefiann Jan 27, 2025
694f51e
Update website/docs/docs/core/pip-install.md
nataliefiann Jan 27, 2025
efb8725
Updated prerequisites
nataliefiann Jan 27, 2025
bbc3290
Merge branch 'current' into new-branch-name-VE
nataliefiann Jan 27, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated prerequisites
nataliefiann committed Jan 27, 2025
commit efb872528263502737c1c41e3f585312cedaad44
2 changes: 1 addition & 1 deletion website/docs/docs/core/pip-install.md
Original file line number Diff line number Diff line change
@@ -20,11 +20,11 @@ Users who want to run dbt locally, for example in [dbt Core](/docs/core/installa

### Prerequisites


- Access to a terminal or command prompt.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- Access to a terminal or command prompt.
Once you've met the prerequisites, follow these steps to set up your virtual environment.
- Access to a terminal or command prompt.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oops i mean to put this sugg in line 30!

- Have [Python](https://www.python.org/downloads/) installed on your machine. You can check if Python is installed by running `python --version` or `python3 --version` in your terminal or command prompt.
- Have [pip installed](https://pip.pypa.io/en/stable/installation/). You can check if pip is installed by running `pip --version` or `pip3 --version`.
- Have the necessary permissions to create directories and install packages on your machine.
- Once you've met the prerequisites, follow these steps to set up your virtual environment.

### Set up a Python virtual environment


Unchanged files with check annotations Beta

version: dbtVersion,
EOLDate,
isPrerelease,
latestStableRelease,

Check warning on line 43 in website/src/theme/DocRoot/Layout/Main/index.js

GitHub Actions / eslint-check

'latestStableRelease' is assigned a value but never used
} = useContext(VersionContext);
const {
pageAvailable,

Check warning on line 47 in website/src/theme/DocRoot/Layout/Main/index.js

GitHub Actions / eslint-check

'pageAvailable' is assigned a value but never used
firstAvailableVersion,
lastAvailableVersion

Check warning on line 49 in website/src/theme/DocRoot/Layout/Main/index.js

GitHub Actions / eslint-check

'lastAvailableVersion' is assigned a value but never used
} = pageVersionCheck(dbtVersion, versionedPages, currentDocRoute);
const hasFirstAvailableVersion =

Check warning on line 52 in website/src/theme/DocRoot/Layout/Main/index.js

GitHub Actions / eslint-check

'hasFirstAvailableVersion' is assigned a value but never used
firstAvailableVersion && firstAvailableVersion !== "0";
// Check whether this version is a isPrerelease, and show banner if so