Skip to content

Directories

Workspace

Path where all application data is stored.

This is a special variable that can be overriden at runtime and is dynamic if unset

System Path
Linux ~/.local/share/Vendor
Windows C:\Users\User\AppData\Local\Vendor
MacOS ~/Library/Application Support/Vendor
Custom $WORKSPACE

All .env files where the project is run are loaded

custom.env
WORKSPACE=/custom/workspace/path

Common

Subdirectory of the Workspace to use for all Pyaket files.

project.directories.common = "Pyaket"
pyaket dir --common Pyaket
export PYAKET_COMMON_DIR="Pyaket"

Versions

Subdirectory of the Workspace to install virtual environments.

project.directories.versions = "Versions"
pyaket dir --versions Versions
export PYAKET_VERSIONS_DIR="Versions"
System Path
Linux ~/.local/share/Vendor/Versions
Windows C:\Users\User\AppData\Local\Vendor\Versions
MacOS ~/Library/Application Support/Vendor/Versions
Custom $WORKSPACE/Versions