1. 程式人生 > >pycon新發現之pipenv-

pycon新發現之pipenv-

pipenv

安裝

Just use pip:

$ pip install pipenv

Or, if you’re using Ubuntu 17.10:

$ sudo apt install software-properties-common python-software-properties
$ sudo add-apt-repository ppa:pypa/ppa
$ sudo apt update
$ sudo apt install pipenv

Otherwise, if you’re on MacOS, you can install Pipenv easily with Homebrew:

$ brew install pipenv

使用

下載東西

mkdir hello

cd hello

pipenv install requests

`

檢視命令

pipenv

進入shell

pipenv shell

python

import requests

這裡寫圖片描述

退出

exit

檢視下載內容版本

pipenv graph

這裡寫圖片描述

顯示目錄環境

pipenv –where

檢查安全漏洞

pipenv –check

解除安裝所有包

pipenv uninstall – all

設定國內映象

這裡寫圖片描述

利用不同版本建立環境

pipenv –two

pipenv –there

建立python2和python3

一個好工具!