Unverified Commit a49708c4 authored by Alex Krentsel's avatar Alex Krentsel Committed by GitHub
Browse files

Update env_vars.py to include GOOGLE_VM_CONFIG_LOCK_FILE

See this comment: https://github.com/TimDettmers/bitsandbytes/issues/620#issuecomment-1666014197

adding this variable to be ignored allows the bitsandbytes import and setup to proceed on a GCP VM in a jupyter notebook.
parent 726f1470
...@@ -8,6 +8,7 @@ def to_be_ignored(env_var: str, value: str) -> bool: ...@@ -8,6 +8,7 @@ def to_be_ignored(env_var: str, value: str) -> bool:
"OLDPWD", "OLDPWD",
"SSH_AUTH_SOCK", # SSH stuff, therefore unrelated "SSH_AUTH_SOCK", # SSH stuff, therefore unrelated
"SSH_TTY", "SSH_TTY",
"GOOGLE_VM_CONFIG_LOCK_FILE", # on GCP setups, requires elevated permissions, causing problems in Jupyter notebooks
"HOME", # Linux shell default "HOME", # Linux shell default
"TMUX", # Terminal Multiplexer "TMUX", # Terminal Multiplexer
"XDG_DATA_DIRS", # XDG: Desktop environment stuff "XDG_DATA_DIRS", # XDG: Desktop environment stuff
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment