worldsite / blog.sc

Blogging soul chat, stay cool. via: https://blog.sc
3 stars 0 forks source link

Python环境 #39

Open suhao opened 2 years ago

suhao commented 2 years ago
  1. Pyenv:不同Python版本的安装器

    • cd $HOME/.pyenv
    • git clone https://github.com/pyenv/pyenv.git ~/.pyenv
    • pyenv versions
    • pyenv version
    • pyenv install --list
    • pyenv install -v 2.7.3
    • pyenv rehash
    • pyenv global 3.4.0
    • pyenv local 2.7.3
  2. pipenv:管理虚拟环境,在项目目录创建项目环境配置

    • pip3 install pipenv
    • pipenv install
    • pipenv --python 3.7