Skip to content

Instantly share code, notes, and snippets.

@yuvve
Created March 1, 2024 13:31
Show Gist options
  • Save yuvve/b349de9f0db7b3157df3b764c6a2bebe to your computer and use it in GitHub Desktop.
Save yuvve/b349de9f0db7b3157df3b764c6a2bebe to your computer and use it in GitHub Desktop.
Manually setting Pythonpath

Manually setting Pythonpath

Linux

export PYTHONPATH=path

For current working directory:

export PYTHONPATH=.

Windows

$env:PYTHONPATH = "path"

For current working directory:

$env:PYTHONPATH = "."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment