You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title: 'Create a virtualenv environment for a project',
30
+
description: 'Create an isolated Python environment in a project directory and install dependencies from requirements.txt.',
31
+
configs: [{
32
+
type: 'virtualenv-project',
33
+
dest: '.venv',
34
+
cwd: '~/projects/my-python-project',
35
+
automaticallyInstallRequirementsTxt: true,
36
+
}]
37
+
}
38
+
39
+
constexampleWithVirtualenv: ExampleConfig={
40
+
title: 'Install virtualenv and set up a project environment',
41
+
description: 'Install virtualenv and create an isolated environment for a Python project, automatically installing dependencies from requirements.txt.',
title: 'Install virtualenv and set up a project environment',
10
+
description: 'Install virtualenv and create an isolated environment for a Python project, automatically installing dependencies from requirements.txt.',
0 commit comments