Skip to content

Commit

Permalink
export PIP_BREAK_SYSTEM_PACKAGES=1
Browse files Browse the repository at this point in the history
  • Loading branch information
wizawu committed Aug 29, 2024
1 parent 3522ed2 commit 320cda6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dotfiles/bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export NODE_PATH=/usr/local/lib/node_modules
export PATH=$HOME/.sysconf/bin:$GOPATH/bin:$GRADLE_HOME/bin:$JAVA_HOME/bin:/usr/sbin:$PATH
export PIP_BREAK_SYSTEM_PACKAGES=1
export PIP_INDEX_URL=https://pypi.tuna.tsinghua.edu.cn/simple
export TRASH_DIR=$HOME/.local/share/Trash

Expand Down Expand Up @@ -56,7 +57,7 @@ alias lh='ls -lh'
alias ll='ls -l'
alias ls='ls --color=auto'
alias psync='rsync -Pz --info=progress2'
alias pyfmt='bash -c "isort \$0 && black \$0"'
alias pyfmt='bash -c "isort \$0 && black --line-length 120 \$0"'
alias randn='shuf -i 1-9223372036854775807 -n 1'
alias rm='rm -I'
alias si='sudo -i'
Expand Down
4 changes: 4 additions & 0 deletions dotfiles/config/Code/User/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@
"preserve_newlines": true,
"selector_separator_newline": false
},
"black-formatter.args": [
"--line-length",
"120"
],
"debug.console.fontFamily": "Courier Prime Code",
"debug.console.fontSize": 12,
"debug.javascript.codelens.npmScripts": "never",
Expand Down

0 comments on commit 320cda6

Please sign in to comment.