Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mcanouil/quarto-venv
Using Quarto and Virtual Environment in Visual Studio Code / Codespace
https://github.com/mcanouil/quarto-venv
devcontainer python quarto quarto-pub venv virtual-environment vscode
Last synced: about 2 months ago
JSON representation
Using Quarto and Virtual Environment in Visual Studio Code / Codespace
- Host: GitHub
- URL: https://github.com/mcanouil/quarto-venv
- Owner: mcanouil
- Created: 2024-02-22T21:56:08.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-02-22T22:15:29.000Z (11 months ago)
- Last Synced: 2024-02-24T10:30:01.960Z (11 months ago)
- Topics: devcontainer, python, quarto, quarto-pub, venv, virtual-environment, vscode
- Homepage:
- Size: 61.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quarto & Virtual Env
1. (Optional) In the command palette, search and select "Dev Containers: Reopen in Container".
Docker is required for this to work.
Alternatively, you can open the folder in a container by clicking the green "Code" button on GitHub and clicking on "Create codespace on main".
2. In the command palette:
1. Search and select "Python: Create Environment...".
2. Select "Venv".
3. Select Python version/path.
4. VSCode should automatically switch to the new environment, if not `source .venv/bin/activate`.
3. Install Jupyter: `python3 -m pip install jupyter`.
4. Check Quarto setup: `quarto check`.In this repository:
```txt
.
├── .devcontainer
│ └── devcontainer.json # Dev Container settings
├── .vscode
│ ├── extensions.json # Extensions to install
│ └── settings.json # VSCode settings, ensure "python.defaultInterpreterPath" is the default
├── README.md
└── quarto-devcontainer-venv.mov
```