text 用于python的shell环境

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 用于python的shell环境相关的知识,希望对你有一定的参考价值。

# pipx
export PATH="~/.local/bin:$PATH"

# pyenv
if command -v pyenv 1>/dev/null 2>&1; then
  eval "$(pyenv init -)"
fi

# poetry
export PATH="$HOME/.poetry/bin:$PATH"

# pip should only run if there is a virtualenv currently activated
export PIP_REQUIRE_VIRTUALENV=true
 
# commands to override pip restriction above.
# use `gpip` or `gpip3` to force installation of
# a package in the global python environment
# Never do this! It is just an escape hatch.
gpip(){
   PIP_REQUIRE_VIRTUALENV="" pip "$@"
}
gpip3(){
   PIP_REQUIRE_VIRTUALENV="" pip3 "$@"
}

以上是关于text 用于python的shell环境的主要内容,如果未能解决你的问题,请参考以下文章

text 用于ubuntu 16.04的Vault服务器shell

text Python反向Shell

Python集成开发环境(Eclipse+Pydev)

使用 pip 安装 TensorFlow

Shell之环境变量、局部变量

从 shell 环境分析 Python 脚本